Class VkComputePipelineIndirectBufferInfoNV

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkComputePipelineIndirectBufferInfoNV>
org.lwjgl.vulkan.VkComputePipelineIndirectBufferInfoNV
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkComputePipelineIndirectBufferInfoNV extends org.lwjgl.system.Struct<VkComputePipelineIndirectBufferInfoNV> implements org.lwjgl.system.NativeResource
Structure describing the device address where pipeline’s metadata will be saved.
Description

If pipelineDeviceAddressCaptureReplay is zero, no specific address is requested. If pipelineDeviceAddressCaptureReplay is not zero, then it must be an address retrieved from an identically created pipeline on the same implementation. The pipeline metadata must also be placed on an identically created buffer and at the same offset using the CmdUpdatePipelineIndirectBufferNV command.

Valid Usage
Valid Usage (Implicit)

Layout


 struct VkComputePipelineIndirectBufferInfoNV {
     VkStructureType sType();
     void const * pNext();
     VkDeviceAddress deviceAddress();
     VkDeviceSize size();
     VkDeviceAddress pipelineDeviceAddressCaptureReplay();
 }