mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 10:05:25 +00:00
17 lines
498 B
C#
17 lines
498 B
C#
|
namespace Ryujinx.Core.OsHle.Services.Nv.NvGpuGpu
|
|||
|
{
|
|||
|
struct NvGpuGpuZcullGetInfo
|
|||
|
{
|
|||
|
public int WidthAlignPixels;
|
|||
|
public int HeightAlignPixels;
|
|||
|
public int PixelSquaresByAliquots;
|
|||
|
public int AliquotTotal;
|
|||
|
public int RegionByteMultiplier;
|
|||
|
public int RegionHeaderSize;
|
|||
|
public int SubregionHeaderSize;
|
|||
|
public int SubregionWidthAlignPixels;
|
|||
|
public int SubregionHeightAlignPixels;
|
|||
|
public int SubregionCount;
|
|||
|
}
|
|||
|
}
|