summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_jit_x64.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-08-23 23:47:09 +0200
committerbunnei <bunneidev@gmail.com>2015-08-23 23:47:09 +0200
commit387bd3a1e49bc5d6e631798753aa8e72a930eebe (patch)
treea9c7552ce502fc5b24c3924300a70a0df0bb6724 /src/video_core/shader/shader_jit_x64.h
parentMerge pull request #1058 from lioncash/ptr (diff)
parentShader: implement DPH/DPHI in JIT (diff)
downloadyuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar.gz
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar.bz2
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar.lz
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar.xz
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.tar.zst
yuzu-387bd3a1e49bc5d6e631798753aa8e72a930eebe.zip
Diffstat (limited to 'src/video_core/shader/shader_jit_x64.h')
-rw-r--r--src/video_core/shader/shader_jit_x64.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64.h
index b2aa5293c..fbe19fe93 100644
--- a/src/video_core/shader/shader_jit_x64.h
+++ b/src/video_core/shader/shader_jit_x64.h
@@ -37,6 +37,7 @@ public:
void Compile_ADD(Instruction instr);
void Compile_DP3(Instruction instr);
void Compile_DP4(Instruction instr);
+ void Compile_DPH(Instruction instr);
void Compile_EX2(Instruction instr);
void Compile_LG2(Instruction instr);
void Compile_MUL(Instruction instr);