blob: 4be2db90d1af8b5e1eb19855a9e4878c07f60f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.Gpu.State
{
struct ViewportExtents
{
public ushort X;
public ushort Width;
public ushort Y;
public ushort Height;
public float DepthNear;
public float DepthFar;
}
}
|