2019-10-13 06:02:07 +00:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 16:32:06 +00:00
|
|
|
/// <summary>
|
|
|
|
/// 3D, 2D or 1D texture size.
|
|
|
|
/// </summary>
|
2019-10-13 06:02:07 +00:00
|
|
|
struct Size3D
|
|
|
|
{
|
|
|
|
public int Width;
|
|
|
|
public int Height;
|
|
|
|
public int Depth;
|
|
|
|
}
|
|
|
|
}
|