Initial support for shader half float instructions (#507)

This commit is contained in:
gdkchan
2019-01-31 09:43:24 -03:00
committed by GitHub
parent c81abdde4c
commit e10ff17e2d
9 changed files with 244 additions and 65 deletions

View File

@@ -0,0 +1,9 @@
namespace Ryujinx.Graphics.Gal.Shader
{
enum ShaderRegisterSize
{
Half,
Single,
Double
}
}