MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / signal

Method signal

Source/Falcor/Core/API/CopyContext.cpp:92–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92uint64_t CopyContext::signal(Fence* pFence, uint64_t value)
93{
94 FALCOR_CHECK(pFence, "'fence' must not be null");
95 uint64_t signalValue = pFence->updateSignaledValue(value);
96 mpLowLevelData->getGfxCommandQueue()->executeCommandBuffers(0, nullptr, pFence->getGfxFence(), signalValue);
97 return signalValue;
98}
99
100void CopyContext::wait(Fence* pFence, uint64_t value)
101{

Callers 1

createMethod · 0.45

Calls 1

updateSignaledValueMethod · 0.80

Tested by

no test coverage detected