shader_decode: Implement VMAD and VSETP

This commit is contained in:
ReinUsesLisp
2018-12-24 01:23:00 -03:00
parent b11e0b94c7
commit a1b845b651
5 changed files with 129 additions and 2 deletions

View File

@ -174,6 +174,7 @@ u32 ShaderIR::DecodeInstr(BasicBlock& bb, u32 pc) {
{OpCode::Type::FloatSet, &ShaderIR::DecodeFloatSet},
{OpCode::Type::IntegerSet, &ShaderIR::DecodeIntegerSet},
{OpCode::Type::HalfSet, &ShaderIR::DecodeHalfSet},
{OpCode::Type::Video, &ShaderIR::DecodeVideo},
{OpCode::Type::Xmad, &ShaderIR::DecodeXmad},
};