| 2641 | |
| 2642 | |
| 2643 | uint32_t SpirvModule::opLogicalNot( |
| 2644 | uint32_t resultType, |
| 2645 | uint32_t operand) { |
| 2646 | uint32_t resultId = this->allocateId(); |
| 2647 | |
| 2648 | m_code.putIns (spv::OpLogicalNot, 4); |
| 2649 | m_code.putWord(resultType); |
| 2650 | m_code.putWord(resultId); |
| 2651 | m_code.putWord(operand); |
| 2652 | return resultId; |
| 2653 | } |
| 2654 | |
| 2655 | |
| 2656 | uint32_t SpirvModule::opDot( |
no test coverage detected