Structures

VkCuLaunchInfoNVX

Stub description of VkCuLaunchInfoNVX

There is currently no specification language written for this type. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

typedef struct VkCuLaunchInfoNVX {
    VkStructureType sType;
    const void* pNext;
    VkCuFunctionNVX function;
    uint32_t gridDimX;
    uint32_t gridDimY;
    uint32_t gridDimZ;
    uint32_t blockDimX;
    uint32_t blockDimY;
    uint32_t blockDimZ;
    uint32_t sharedMemBytes;
    size_t paramCount;
    const void* const * pParams;
    size_t extraCount;
    const void* const * pExtras;
} VkCuLaunchInfoNVX;

Valid Usage (Implicit)

VUID-VkCuLaunchInfoNVX-sType-sType

sType must be VK_STRUCTURE_TYPE_CU_LAUNCH_INFO_NVX

VUID-VkCuLaunchInfoNVX-pParams-parameter

If paramCount is not 0, pParams must be a valid pointer to an array of paramCount bytes

VUID-VkCuLaunchInfoNVX-pExtras-parameter

If extraCount is not 0, pExtras must be a valid pointer to an array of extraCount bytes