mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +00:00
8e306b3ac1
* Fix NV stubs * Compliant with feedback * Oops, Compliant with feedback #2
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;
|
|
}
|
|
}
|