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