mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-06 16:03:05 +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;
|
|||
|
}
|
|||
|
}
|