| 2611 | |
| 2612 | |
| 2613 | uint32_t SpirvModule::opLogicalAnd( |
| 2614 | uint32_t resultType, |
| 2615 | uint32_t operand1, |
| 2616 | uint32_t operand2) { |
| 2617 | uint32_t resultId = this->allocateId(); |
| 2618 | |
| 2619 | m_code.putIns (spv::OpLogicalAnd, 5); |
| 2620 | m_code.putWord(resultType); |
| 2621 | m_code.putWord(resultId); |
| 2622 | m_code.putWord(operand1); |
| 2623 | m_code.putWord(operand2); |
| 2624 | return resultId; |
| 2625 | } |
| 2626 | |
| 2627 | |
| 2628 | uint32_t SpirvModule::opLogicalOr( |
no test coverage detected