mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-23 17:52:02 +00:00
Fixup SSY (#424)
This commit is contained in:
parent
6d65e53664
commit
e04221b293
2 changed files with 2 additions and 2 deletions
|
@ -360,7 +360,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
||||||
|
|
||||||
private void PrintDeclSsy()
|
private void PrintDeclSsy()
|
||||||
{
|
{
|
||||||
SB.AppendLine("uint " + GlslDecl.SsyCursorName + ";");
|
SB.AppendLine("uint " + GlslDecl.SsyCursorName + "= 0;");
|
||||||
|
|
||||||
SB.AppendLine("uint " + GlslDecl.SsyStackName + "[" + GlslDecl.SsyStackSize + "];" + Environment.NewLine);
|
SB.AppendLine("uint " + GlslDecl.SsyStackName + "[" + GlslDecl.SsyStackSize + "];" + Environment.NewLine);
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,7 +112,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
||||||
Set("0100110000101x", ShaderDecode.Shr_C);
|
Set("0100110000101x", ShaderDecode.Shr_C);
|
||||||
Set("0011100x00101x", ShaderDecode.Shr_I);
|
Set("0011100x00101x", ShaderDecode.Shr_I);
|
||||||
Set("0101110000101x", ShaderDecode.Shr_R);
|
Set("0101110000101x", ShaderDecode.Shr_R);
|
||||||
Set("1110001010010x", ShaderDecode.Ssy);
|
Set("111000101001xx", ShaderDecode.Ssy);
|
||||||
Set("1110111111110x", ShaderDecode.St_A);
|
Set("1110111111110x", ShaderDecode.St_A);
|
||||||
Set("1111000011111x", ShaderDecode.Sync);
|
Set("1111000011111x", ShaderDecode.Sync);
|
||||||
Set("110000xxxx111x", ShaderDecode.Tex);
|
Set("110000xxxx111x", ShaderDecode.Tex);
|
||||||
|
|
Loading…
Reference in a new issue