mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +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;
|
|
}
|
|
} |