aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-01-31 09:43:24 -0300
committerGitHub <noreply@github.com>2019-01-31 09:43:24 -0300
commite10ff17e2d87b818d340947367d2d1a4276a0d06 (patch)
tree3b07aa92c5d8acff81d43ddb1ded48c4c7917b72 /Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs
parentc81abdde4c48c607669580ef769776623b86dcc7 (diff)
Initial support for shader half float instructions (#507)
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs b/Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs
new file mode 100644
index 00000000..eb37359b
--- /dev/null
+++ b/Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.Graphics.Gal.Shader
+{
+ enum ShaderRegisterSize
+ {
+ Half,
+ Single,
+ Double
+ }
+} \ No newline at end of file