summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_jit_x64.h
diff options
context:
space:
mode:
authoraroulin <andy.roulin@epfl.ch>2015-08-19 14:23:53 +0200
committeraroulin <andy.roulin@epfl.ch>2015-08-19 14:29:39 +0200
commitf3e8f42718393b6894b06845321328b59b8a012f (patch)
tree2452017afbc89c845a7b492787233eabb90685ad /src/video_core/shader/shader_jit_x64.h
parentShader: implement SGE, SGEI in interpreter (diff)
downloadyuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar.gz
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar.bz2
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar.lz
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar.xz
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.tar.zst
yuzu-f3e8f42718393b6894b06845321328b59b8a012f.zip
Diffstat (limited to 'src/video_core/shader/shader_jit_x64.h')
-rw-r--r--src/video_core/shader/shader_jit_x64.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64.h
index a6ae7fbf1..b2aa5293c 100644
--- a/src/video_core/shader/shader_jit_x64.h
+++ b/src/video_core/shader/shader_jit_x64.h
@@ -40,6 +40,8 @@ public:
void Compile_EX2(Instruction instr);
void Compile_LG2(Instruction instr);
void Compile_MUL(Instruction instr);
+ void Compile_SGE(Instruction instr);
+ void Compile_SLT(Instruction instr);
void Compile_FLR(Instruction instr);
void Compile_MAX(Instruction instr);
void Compile_MIN(Instruction instr);
@@ -47,7 +49,6 @@ public:
void Compile_RSQ(Instruction instr);
void Compile_MOVA(Instruction instr);
void Compile_MOV(Instruction instr);
- void Compile_SLTI(Instruction instr);
void Compile_NOP(Instruction instr);
void Compile_END(Instruction instr);
void Compile_CALL(Instruction instr);