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

Method opLogicalNot

GPCS4/Graphics/SpirV/SpirvModule.cpp:2643–2653  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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(

Callers 3

emitCsLaneReadMethod · 0.80
emitControlFlowIfMethod · 0.80

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected