diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-10 04:10:17 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-04-14 22:01:40 +0200 |
commit | 7639667562ae155d27b5f5fcec9a54b0c17c1682 (patch) | |
tree | 4c137009c47871bb7e9c676dbab787deba63473f /src/video_core/engines/shader_bytecode.h | |
parent | shader_bytecode: Add SubOp decoding. (diff) | |
download | yuzu-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/shader_bytecode.h')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 3 |
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; } |