aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs b/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
new file mode 100644
index 00000000..839a4d0a
--- /dev/null
+++ b/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
@@ -0,0 +1,11 @@
+namespace Ryujinx.Graphics.Gpu.Engine.Types
+{
+ /// <summary>
+ /// Sampler pool indexing mode.
+ /// </summary>
+ enum SamplerIndex
+ {
+ Independently = 0,
+ ViaHeaderIndex = 1
+ }
+} \ No newline at end of file