Ryujinx-git/src/Ryujinx.Graphics.Texture/Size.cs

17 lines
344 B
C#
Raw Normal View History

2019-10-13 03:02:07 -03:00
namespace Ryujinx.Graphics.Texture
{
public readonly struct Size
2019-10-13 03:02:07 -03:00
{
public int Width { get; }
2019-10-13 03:02:07 -03:00
public int Height { get; }
public int Depth { get; }
2019-10-13 03:02:07 -03:00
public Size(int width, int height, int depth)
{
Width = width;
2019-10-13 03:02:07 -03:00
Height = height;
Depth = depth;
2019-10-13 03:02:07 -03:00
}
}
}