MCPcopy Create free account
hub / github.com/Inori/GPCS4 / opLogicalOr

Method opLogicalOr

GPCS4/Graphics/SpirV/SpirvModule.cpp:2628–2640  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2626
2627
2628 uint32_t SpirvModule::opLogicalOr(
2629 uint32_t resultType,
2630 uint32_t operand1,
2631 uint32_t operand2) {
2632 uint32_t resultId = this->allocateId();
2633
2634 m_code.putIns (spv::OpLogicalOr, 5);
2635 m_code.putWord(resultType);
2636 m_code.putWord(resultId);
2637 m_code.putWord(operand1);
2638 m_code.putWord(operand2);
2639 return resultId;
2640 }
2641
2642
2643 uint32_t SpirvModule::opLogicalNot(

Callers 3

emitCsLaneReadMethod · 0.80
emitUpdateSccMethod · 0.80

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected