mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-27 08:27:42 +02:00
12 lines
222 B
C#
12 lines
222 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// 3D, 2D or 1D texture size.
|
|
/// </summary>
|
|
struct Size3D
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public int Depth;
|
|
}
|
|
}
|