Class VkPhysicalDeviceConditionalRenderingFeaturesEXT

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

public class VkPhysicalDeviceConditionalRenderingFeaturesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceConditionalRenderingFeaturesEXT> implements org.lwjgl.system.NativeResource
Structure describing if a secondary command buffer can be executed if conditional rendering is active in the primary command buffer.
Description

If the VkPhysicalDeviceConditionalRenderingFeaturesEXT structure is included in the pNext chain of the VkPhysicalDeviceFeatures2 structure passed to GetPhysicalDeviceFeatures2, it is filled in to indicate whether each corresponding feature is supported. VkPhysicalDeviceConditionalRenderingFeaturesEXT can also be used in the pNext chain of VkDeviceCreateInfo to selectively enable these features.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceConditionalRenderingFeaturesEXT {
     VkStructureType sType();
     void * pNext();
     VkBool32 conditionalRendering();
     VkBool32 inheritedConditionalRendering();
 }