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

Method opLogicalEqual

GPCS4/Graphics/SpirV/SpirvModule.cpp:2583–2595  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2581
2582
2583 uint32_t SpirvModule::opLogicalEqual(
2584 uint32_t resultType,
2585 uint32_t operand1,
2586 uint32_t operand2) {
2587 uint32_t resultId = this->allocateId();
2588
2589 m_code.putIns (spv::OpLogicalEqual, 5);
2590 m_code.putWord(resultType);
2591 m_code.putWord(resultId);
2592 m_code.putWord(operand1);
2593 m_code.putWord(operand2);
2594 return resultId;
2595 }
2596
2597
2598 uint32_t SpirvModule::opLogicalNotEqual(

Callers 1

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected