diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-08-13 18:22:09 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-13 18:22:09 -0300 |
| commit | 09593ae6d85b204b7bded803a56f0d81fbda1127 (patch) | |
| tree | b5d3058cb80cc1605473683f5a827fff2c1b5b20 /Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs | |
| parent | 4518c52c65f64a5f7be8866a299056fdf94ef860 (diff) | |
Add partial support to the TEX.B shader instruction (#342)
* Add partial support to the TEX.B shader instruction, fix for mixed indexed and non-indexed drawing
* Better exception
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs')
| -rw-r--r-- | Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs b/Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs index 3f20dc44..95b8e467 100644 --- a/Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs +++ b/Ryujinx.Graphics/Gal/Shader/ShaderOpCodeTable.cs @@ -114,6 +114,7 @@ namespace Ryujinx.Graphics.Gal.Shader Set("0101110000101x", ShaderDecode.Shr_R); Set("1110111111110x", ShaderDecode.St_A); Set("110000xxxx111x", ShaderDecode.Tex); + Set("1101111010111x", ShaderDecode.Tex_B); Set("1101111101001x", ShaderDecode.Texq); Set("1101100xxxxxxx", ShaderDecode.Texs); Set("1101101xxxxxxx", ShaderDecode.Tlds); |
