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

Method opFOrdLessThan

GPCS4/Graphics/SpirV/SpirvModule.cpp:2523–2535  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2521
2522
2523 uint32_t SpirvModule::opFOrdLessThan(
2524 uint32_t resultType,
2525 uint32_t vector1,
2526 uint32_t vector2) {
2527 uint32_t resultId = this->allocateId();
2528
2529 m_code.putIns (spv::OpFOrdLessThan, 5);
2530 m_code.putWord(resultType);
2531 m_code.putWord(resultId);
2532 m_code.putWord(vector1);
2533 m_code.putWord(vector2);
2534 return resultId;
2535 }
2536
2537
2538 uint32_t SpirvModule::opFOrdLessThanEqual(

Callers 2

emitVectorCmpMethod · 0.80
emitComputeDivergenceMethod · 0.80

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected