blob: 7430ea316124703c57a48fd4a1bb7c1aa985bd37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// GPU counter report state.
/// </summary>
struct ReportState
{
public GpuVa Address;
public int Payload;
public uint Control;
}
}
|