| 90 | } |
| 91 | |
| 92 | bool SpirvTools::Disassemble(const std::vector<uint32_t>& binary, |
| 93 | std::string* text, uint32_t options) const { |
| 94 | return Disassemble(binary.data(), binary.size(), text, options); |
| 95 | } |
| 96 | |
| 97 | bool SpirvTools::Disassemble(const uint32_t* binary, const size_t binary_size, |
| 98 | std::string* text, uint32_t options) const { |
no test coverage detected