mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-27 08:29:23 +00:00
11 lines
211 B
C#
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;
|
|
}
|
|
} |