MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ dispatch_indirect()

void MayaFlux::Portal::Graphics::ComputePress::dispatch_indirect ( CommandBufferID  cmd_id,
vk::Buffer  indirect_buffer,
vk::DeviceSize  offset = 0 
)

Dispatch compute workgroups indirectly.

Definition at line 307 of file ComputePress.cpp.

311{
312 auto cmd = m_shader_foundry->get_command_buffer(cmd_id);
313 if (!cmd) {
315 "Invalid command buffer ID: {}", cmd_id);
316 return;
317 }
318
319 cmd.dispatchIndirect(indirect_buffer, offset);
320
322 "Dispatched compute indirect from buffer");
323}
#define MF_ERROR(comp, ctx,...)
#define MF_DEBUG(comp, ctx,...)
vk::CommandBuffer get_command_buffer(CommandBufferID cmd_id)
Get Vulkan command buffer handle from CommandBufferID.
@ GPUCompute
GPU compute operations (shaders, GPGPU tasks)
@ Portal
High-level user-facing API layer.

References MayaFlux::Portal::Graphics::ShaderFoundry::get_command_buffer(), MayaFlux::Journal::GPUCompute, m_shader_foundry, MF_DEBUG, MF_ERROR, and MayaFlux::Journal::Portal.

+ Here is the call graph for this function: