aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs b/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
new file mode 100644
index 00000000..4671af46
--- /dev/null
+++ b/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
@@ -0,0 +1,13 @@
+namespace Ryujinx.Graphics.Gpu.Image
+{
+ /// <summary>
+ /// The level of view compatibility one texture has to another.
+ /// Values are increasing in compatibility from 0 (incompatible).
+ /// </summary>
+ enum TextureViewCompatibility
+ {
+ Incompatible = 0,
+ CopyOnly,
+ Full
+ }
+}