diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2019-01-31 09:43:24 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-31 09:43:24 -0300 |
| commit | e10ff17e2d87b818d340947367d2d1a4276a0d06 (patch) | |
| tree | 3b07aa92c5d8acff81d43ddb1ded48c4c7917b72 /Ryujinx.Graphics/Gal/Shader/ShaderRegisterSize.cs | |
| parent | c81abdde4c48c607669580ef769776623b86dcc7 (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.cs | 9 |
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 |
