Class VkCommandBufferInheritanceInfo

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

public class VkCommandBufferInheritanceInfo extends org.lwjgl.system.Struct<VkCommandBufferInheritanceInfo> implements org.lwjgl.system.NativeResource
Structure specifying command buffer inheritance information.
Description

If the VkCommandBuffer will not be executed within a render pass instance, or if the render pass instance was begun with CmdBeginRendering, renderPass, subpass, and framebuffer are ignored.

Valid Usage
Valid Usage (Implicit)
See Also

VkCommandBufferBeginInfo

Layout


 struct VkCommandBufferInheritanceInfo {
     VkStructureType sType();
     void const * pNext();
     VkRenderPass renderPass();
     uint32_t subpass();
     VkFramebuffer framebuffer();
     VkBool32 occlusionQueryEnable();
     VkQueryControlFlags queryFlags();
     VkQueryPipelineStatisticFlags pipelineStatistics();
 }