aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs b/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
new file mode 100644
index 00000000..b3274b64
--- /dev/null
+++ b/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.Graphics.Gpu.Image
+{
+ enum SamplerMinFilter
+ {
+ Nearest = 1,
+ Linear
+ }
+}