| 3619 | |
| 3620 | |
| 3621 | void SpirvModule::opBranchConditional( |
| 3622 | uint32_t condition, |
| 3623 | uint32_t trueLabel, |
| 3624 | uint32_t falseLabel) { |
| 3625 | m_code.putIns (spv::OpBranchConditional, 4); |
| 3626 | m_code.putWord(condition); |
| 3627 | m_code.putWord(trueLabel); |
| 3628 | m_code.putWord(falseLabel); |
| 3629 | } |
| 3630 | |
| 3631 | |
| 3632 | void SpirvModule::opSwitch( |
no test coverage detected