15 #include <vsg/commands/Command.h>
16 #include <vsg/vk/CommandBuffer.h>
27 Dispatch(uint32_t in_groupCountX, uint32_t in_groupCountY, uint32_t in_groupCountZ) :
28 groupCountX(in_groupCountX),
29 groupCountY(in_groupCountY),
30 groupCountZ(in_groupCountZ) {}
32 void read(
Input& input)
override;
33 void write(
Output& output)
const override;
37 vkCmdDispatch(commandBuffer, groupCountX, groupCountY, groupCountZ);
40 uint32_t groupCountX = 0;
41 uint32_t groupCountY = 0;
42 uint32_t groupCountZ = 0;
CommandBuffer encapsulates VkCommandBuffer.
Definition: CommandBuffer.h:27
Definition: Dispatch.h:23