2019-10-13 06:02:07 +00:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
|
|
|
{
|
2022-12-05 13:47:39 +00:00
|
|
|
public readonly struct Size
|
2019-10-13 06:02:07 +00:00
|
|
|
{
|
|
|
|
public int Width { get; }
|
|
|
|
public int Height { get; }
|
|
|
|
public int Depth { get; }
|
|
|
|
|
|
|
|
public Size(int width, int height, int depth)
|
|
|
|
{
|
|
|
|
Width = width;
|
|
|
|
Height = height;
|
|
|
|
Depth = depth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|