| 65 | } |
| 66 | |
| 67 | uint32_t spvOpcodeMake(uint16_t wordCount, SpvOp opcode) { |
| 68 | return ((uint32_t)opcode) | (((uint32_t)wordCount) << 16); |
| 69 | } |
| 70 | |
| 71 | void spvOpcodeSplit(const uint32_t word, uint16_t* pWordCount, |
| 72 | uint16_t* pOpcode) { |
no outgoing calls
no test coverage detected