/ src / Ryujinx.Graphics.Gpu / Engine / Types / SamplerIndex.cs
SamplerIndex.cs
 1  namespace Ryujinx.Graphics.Gpu.Engine.Types
 2  {
 3      /// <summary>
 4      /// Sampler pool indexing mode.
 5      /// </summary>
 6      enum SamplerIndex
 7      {
 8          Independently = 0,
 9          ViaHeaderIndex = 1,
10      }
11  }