aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Translation
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-04-02 07:50:35 -0300
committerGitHub <noreply@github.com>2021-04-02 21:50:35 +1100
commit524fe3bea4ddcb2587ebde06c803645a0bfcd5c2 (patch)
tree21962e7b7e82fad191fe90fe589ece3aabffda36 /Ryujinx.Graphics.Shader/Translation
parentf2cdceb8461f032b77fa3516264cd9b3b1e7d627 (diff)
Implement shader HelperThreadNV (#2163)
* Implement shader HelperThreadNV * Bump shader cache version * Use gl_HelperInvocation since its supported across all vendors * Nit
Diffstat (limited to 'Ryujinx.Graphics.Shader/Translation')
-rw-r--r--Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs b/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
index b618dbc3..3d0d216e 100644
--- a/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
+++ b/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
@@ -54,5 +54,7 @@ namespace Ryujinx.Graphics.Shader.Translation
public const int GtMask = 0x200002c;
public const int LeMask = 0x2000030;
public const int LtMask = 0x2000034;
+
+ public const int ThreadKill = 0x2000038;
}
} \ No newline at end of file