summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-09 22:10:17 -0400
committerbunnei <bunneidev@gmail.com>2018-04-14 16:01:40 -0400
commit7639667562ae155d27b5f5fcec9a54b0c17c1682 (patch)
tree4c137009c47871bb7e9c676dbab787deba63473f /src
parent5a47832221fb03a50af2583ec311114871ea1dd1 (diff)
shader_bytecode: Add FSETP and KIL to GetInfo.
Diffstat (limited to 'src')
-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;
}