MCPcopy Create free account
hub / github.com/PancakeTAS/lsfg-vk / dispatch

Method dispatch

framegen/src/core/commandbuffer.cpp:57–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57void CommandBuffer::dispatch(uint32_t x, uint32_t y, uint32_t z) const {
58 if (*this->state != CommandBufferState::Recording)
59 throw std::logic_error("Command buffer is not in Recording state");
60
61 vkCmdDispatch(*this->commandBuffer, x, y, z);
62}
63
64void CommandBuffer::end() {
65 if (*this->state != CommandBufferState::Recording)

Callers 12

DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80
DispatchMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected