Class VkDispatchIndirectCommand

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class VkDispatchIndirectCommand
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Describes an indirect dispatch command.

    Valid Usage

    Member documentation

    • x – the number of local workgroups to dispatch in the X dimension
    • y – the number of local workgroups to dispatch in the Y dimension
    • z – the number of local workgroups to dispatch in the Z dimension

    Layout

    struct VkDispatchIndirectCommand {
        uint32_t x;
        uint32_t y;
        uint32_t z;
    }