Add VectorTimesMatrix to disassembly

This commit is contained in:
baldurk
2015-12-02 14:38:54 +01:00
parent cf92126d7c
commit 88d7cb4ef1
@@ -1114,6 +1114,7 @@ struct SPVInstruction
case spv::OpFMod:
case spv::OpVectorTimesScalar:
case spv::OpMatrixTimesVector:
case spv::OpVectorTimesMatrix:
case spv::OpMatrixTimesMatrix:
case spv::OpSLessThan:
case spv::OpSLessThanEqual:
@@ -1143,6 +1144,7 @@ struct SPVInstruction
case spv::OpFMul:
case spv::OpVectorTimesScalar:
case spv::OpMatrixTimesVector:
case spv::OpVectorTimesMatrix:
case spv::OpMatrixTimesMatrix:
opstr[0] = '*';
break;
@@ -3654,6 +3656,7 @@ void ParseSPIRV(uint32_t *spirv, size_t spirvLength, SPVModule &module)
case spv::OpFMod:
case spv::OpVectorTimesScalar:
case spv::OpMatrixTimesVector:
case spv::OpVectorTimesMatrix:
case spv::OpMatrixTimesMatrix:
case spv::OpSLessThan:
case spv::OpSLessThanEqual: