2018-09-18 06:30:35 +02:00
|
|
|
|
using Ryujinx.Graphics.Texture;
|
2018-08-20 03:25:26 +02:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gal.OpenGL
|
|
|
|
|
{
|
|
|
|
|
class ImageHandler
|
|
|
|
|
{
|
|
|
|
|
public GalImage Image { get; private set; }
|
|
|
|
|
|
|
|
|
|
public int Width => Image.Width;
|
|
|
|
|
public int Height => Image.Height;
|
2019-02-28 02:12:24 +01:00
|
|
|
|
public int Depth => Image.Depth;
|
2018-08-20 03:25:26 +02:00
|
|
|
|
|
|
|
|
|
public GalImageFormat Format => Image.Format;
|
|
|
|
|
|
|
|
|
|
public int Handle { get; private set; }
|
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
|
public bool HasColor => ImageUtils.HasColor(Image.Format);
|
|
|
|
|
public bool HasDepth => ImageUtils.HasDepth(Image.Format);
|
|
|
|
|
public bool HasStencil => ImageUtils.HasStencil(Image.Format);
|
2018-08-20 03:25:26 +02:00
|
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
|
public ImageHandler(int handle, GalImage image)
|
2018-08-20 03:25:26 +02:00
|
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
|
Handle = handle;
|
|
|
|
|
Image = image;
|
2018-08-20 03:25:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|