aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs b/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
new file mode 100644
index 00000000..b7b70953
--- /dev/null
+++ b/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.Graphics.Nvdec.Vp9
+{
+ internal enum BitDepth
+ {
+ Bits8 = 8, /**< 8 bits */
+ Bits10 = 10, /**< 10 bits */
+ Bits12 = 12, /**< 12 bits */
+ }
+}