diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/ImageComponents.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/ImageComponents.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/ImageComponents.cs b/Ryujinx.Graphics.Shader/Decoders/ImageComponents.cs new file mode 100644 index 00000000..b8a4f6d5 --- /dev/null +++ b/Ryujinx.Graphics.Shader/Decoders/ImageComponents.cs @@ -0,0 +1,11 @@ +namespace Ryujinx.Graphics.Shader.Decoders +{ + enum ImageComponents + { + Red = 1 << 0, + Green = 1 << 1, + Blue = 1 << 2, + Alpha = 1 << 3 + + } +}
\ No newline at end of file |