From 7639667562ae155d27b5f5fcec9a54b0c17c1682 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 9 Apr 2018 22:10:17 -0400 Subject: shader_bytecode: Add FSETP and KIL to GetInfo. --- src/video_core/engines/shader_bytecode.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/video_core/engines') 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; } -- cgit v1.2.3