summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-10 04:10:17 +0200
committerbunnei <bunneidev@gmail.com>2018-04-14 22:01:40 +0200
commit7639667562ae155d27b5f5fcec9a54b0c17c1682 (patch)
tree4c137009c47871bb7e9c676dbab787deba63473f /src/video_core/engines
parentshader_bytecode: Add SubOp decoding. (diff)
downloadyuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.gz
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.bz2
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.lz
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.xz
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.zst
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 477d01f94..a4d02e572 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -222,7 +222,10 @@ union OpCode {
info_table[Id::FMUL_R] = {Type::Arithmetic, "fmul_r"};
info_table[Id::FMUL_C] = {Type::Arithmetic, "fmul_c"};
info_table[Id::FMUL_IMM] = {Type::Arithmetic, "fmul_imm"};
+ info_table[Id::FSETP_C] = {Type::Arithmetic, "fsetp_c"};
+ info_table[Id::FSETP_R] = {Type::Arithmetic, "fsetp_r"};
info_table[Id::EXIT] = {Type::Trivial, "exit"};
+ info_table[Id::KIL] = {Type::Flow, "kil"};
return info_table;
}