diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-10-17 17:02:20 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-17 17:02:20 -0300 |
| commit | d05573bfd1bfce902ac33a13cfeba72675a506ff (patch) | |
| tree | 88622a015981ff080bf6f1f8bf5fc23359770d24 /Ryujinx.Graphics.Shader/Instructions/InstEmit.cs | |
| parent | 1b81653478345c00ddf493bbce9fbce8fec48e48 (diff) | |
Implement SHF (funnel shift) shader instruction (#2702)
* Implement SHF shader instruction
* Shader cache version bump
* Better name
Diffstat (limited to 'Ryujinx.Graphics.Shader/Instructions/InstEmit.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Instructions/InstEmit.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs index 8214c9f4..9cc591ca 100644 --- a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs +++ b/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs @@ -418,34 +418,6 @@ namespace Ryujinx.Graphics.Shader.Instructions context.Config.GpuAccessor.Log("Shader instruction Setlmembase is not implemented."); } - public static void ShfLR(EmitterContext context) - { - InstShfLR op = context.GetOp<InstShfLR>(); - - context.Config.GpuAccessor.Log("Shader instruction ShfLR is not implemented."); - } - - public static void ShfRR(EmitterContext context) - { - InstShfRR op = context.GetOp<InstShfRR>(); - - context.Config.GpuAccessor.Log("Shader instruction ShfRR is not implemented."); - } - - public static void ShfLI(EmitterContext context) - { - InstShfLI op = context.GetOp<InstShfLI>(); - - context.Config.GpuAccessor.Log("Shader instruction ShfLI is not implemented."); - } - - public static void ShfRI(EmitterContext context) - { - InstShfRI op = context.GetOp<InstShfRI>(); - - context.Config.GpuAccessor.Log("Shader instruction ShfRI is not implemented."); - } - public static void St(EmitterContext context) { InstSt op = context.GetOp<InstSt>(); |
