1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-20 07:55:45 -05:00

11 lines
211 B
C#

namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Texture or sampler pool state.
/// </summary>
struct PoolState
{
public GpuVa Address;
public int MaximumId;
}
}