summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2018-04-09 22:10:17 -0400
committerGravatar bunnei2018-04-14 16:01:40 -0400
commit7639667562ae155d27b5f5fcec9a54b0c17c1682 (patch)
tree4c137009c47871bb7e9c676dbab787deba63473f
parentshader_bytecode: Add SubOp decoding. (diff)
downloadyuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.gz
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.tar.xz
yuzu-7639667562ae155d27b5f5fcec9a54b0c17c1682.zip
shader_bytecode: Add FSETP and KIL to GetInfo.
-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 {
222 info_table[Id::FMUL_R] = {Type::Arithmetic, "fmul_r"}; 222 info_table[Id::FMUL_R] = {Type::Arithmetic, "fmul_r"};
223 info_table[Id::FMUL_C] = {Type::Arithmetic, "fmul_c"}; 223 info_table[Id::FMUL_C] = {Type::Arithmetic, "fmul_c"};
224 info_table[Id::FMUL_IMM] = {Type::Arithmetic, "fmul_imm"}; 224 info_table[Id::FMUL_IMM] = {Type::Arithmetic, "fmul_imm"};
225 info_table[Id::FSETP_C] = {Type::Arithmetic, "fsetp_c"};
226 info_table[Id::FSETP_R] = {Type::Arithmetic, "fsetp_r"};
225 info_table[Id::EXIT] = {Type::Trivial, "exit"}; 227 info_table[Id::EXIT] = {Type::Trivial, "exit"};
228 info_table[Id::KIL] = {Type::Flow, "kil"};
226 return info_table; 229 return info_table;
227 } 230 }
228 231