From 7d3a6016d64eea0e523fe35bb61070a0268900f7 Mon Sep 17 00:00:00 2001 From: aroulin Date: Sun, 16 Aug 2015 17:22:49 +0200 Subject: Shader: implement EX2 and LG2 in JIT --- src/video_core/shader/shader_jit_x64.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/video_core/shader/shader_jit_x64.h') 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); -- cgit v1.2.3