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

Method opLogicalNotEqual

GPCS4/Graphics/SpirV/SpirvModule.cpp:2598–2610  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2596
2597
2598 uint32_t SpirvModule::opLogicalNotEqual(
2599 uint32_t resultType,
2600 uint32_t operand1,
2601 uint32_t operand2) {
2602 uint32_t resultId = this->allocateId();
2603
2604 m_code.putIns (spv::OpLogicalNotEqual, 5);
2605 m_code.putWord(resultType);
2606 m_code.putWord(resultId);
2607 m_code.putWord(operand1);
2608 m_code.putWord(operand2);
2609 return resultId;
2610 }
2611
2612
2613 uint32_t SpirvModule::opLogicalAnd(

Callers 1

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected