2019-10-13 02:02:07 -04:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
|
|
|
{
|
2022-12-05 08:47:39 -05:00
|
|
|
public readonly struct Size
|
2019-10-13 02:02:07 -04: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|