summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_jit_x64.h
diff options
context:
space:
mode:
authoraroulin <andy.roulin@epfl.ch>2015-08-16 17:22:49 +0200
committeraroulin <andy.roulin@epfl.ch>2015-08-17 01:12:34 +0200
commit7d3a6016d64eea0e523fe35bb61070a0268900f7 (patch)
treeb7ecaefd2c0dea92411bbeee4db22d30170a7040 /src/video_core/shader/shader_jit_x64.h
parentShader: implement EX2 and LG2 in interpreter (diff)
downloadyuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar.gz
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar.bz2
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar.lz
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar.xz
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.tar.zst
yuzu-7d3a6016d64eea0e523fe35bb61070a0268900f7.zip
Diffstat (limited to 'src/video_core/shader/shader_jit_x64.h')
-rw-r--r--src/video_core/shader/shader_jit_x64.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64.h
index b88f2a0d2..104f9f466 100644
--- a/src/video_core/shader/shader_jit_x64.h
+++ b/src/video_core/shader/shader_jit_x64.h
@@ -37,6 +37,8 @@ public:
void Compile_ADD(Instruction instr);
void Compile_DP3(Instruction instr);
void Compile_DP4(Instruction instr);
+ void Compile_EX2(Instruction instr);
+ void Compile_LG2(Instruction instr);
void Compile_MUL(Instruction instr);
void Compile_FLR(Instruction instr);
void Compile_MAX(Instruction instr);