blob: 0c14bfe953915c09aaa69cd67b9f63c878fea2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// GPU counter report state.
/// </summary>
struct ReportState
{
#pragma warning disable CS0649
public GpuVa Address;
public int Payload;
public uint Control;
#pragma warning restore CS0649
}
}
|