} spv_ext_inst_table_t;
typedef struct spv_binary_t {
- uint32_t const* code;
+ const uint32_t* code;
uint64_t wordCount;
} spv_binary_t;
/// @param[out] pDiagnostic contains diagnostic on failure
///
/// @return result code
-spv_result_t spvBinaryToText(uint32_t const* binary, const uint64_t wordCount,
+spv_result_t spvBinaryToText(const uint32_t* binary, const uint64_t wordCount,
const uint32_t options,
const spv_opcode_table opcodeTable,
const spv_operand_table operandTable,
///
/// @return result code
spv_result_t spvBinaryToTextWithFormat(
- uint32_t const* binary, const uint64_t wordCount, const uint32_t options,
+ const uint32_t* binary, const uint64_t wordCount, const uint32_t options,
const spv_opcode_table opcodeTable, const spv_operand_table operandTable,
const spv_ext_inst_table extInstTable, spv_assembly_syntax_format_t format,
spv_text* pText, spv_diagnostic* pDiagnostic);
#include "libspirv/libspirv.h"
-spv_result_t spvBinaryToText(uint32_t const* code, const uint64_t wordCount,
+spv_result_t spvBinaryToText(const uint32_t* code, const uint64_t wordCount,
const uint32_t options,
const spv_opcode_table opcodeTable,
const spv_operand_table operandTable,