mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-12 18:57:42 +02:00
16 lines
498 B
C#
16 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;
|
|
}
|
|
}
|