aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Sampler/MagFilter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Sampler/MagFilter.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Sampler/MagFilter.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Sampler/MagFilter.cs b/Ryujinx.Graphics.GAL/Sampler/MagFilter.cs
new file mode 100644
index 00000000..3c9c9de6
--- /dev/null
+++ b/Ryujinx.Graphics.GAL/Sampler/MagFilter.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.Graphics.GAL.Sampler
+{
+ public enum MagFilter
+ {
+ Nearest = 1,
+ Linear
+ }
+} \ No newline at end of file