Use the SPIRV-Tools disassembler to print SPIR-V using a SPV_ENV_UNIVERSAL_1_3 environment.
| 125 | |
| 126 | // Use the SPIRV-Tools disassembler to print SPIR-V using a SPV_ENV_UNIVERSAL_1_3 environment. |
| 127 | void SpirvToolsDisassemble(std::ostream& out, const std::vector<unsigned int>& spirv) |
| 128 | { |
| 129 | SpirvToolsDisassemble(out, spirv, spv_target_env::SPV_ENV_UNIVERSAL_1_3); |
| 130 | } |
| 131 | |
| 132 | // Use the SPIRV-Tools disassembler to print SPIR-V with a provided SPIR-V environment. |
| 133 | void SpirvToolsDisassemble(std::ostream& out, const std::vector<unsigned int>& spirv, |
no test coverage detected