Class VkPhysicalDeviceMaintenance7PropertiesKHR

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

public class VkPhysicalDeviceMaintenance7PropertiesKHR extends org.lwjgl.system.Struct<VkPhysicalDeviceMaintenance7PropertiesKHR> implements org.lwjgl.system.NativeResource
Structure describing various implementation-defined properties introduced with VK_KHR_maintenance7.
Description

If the VkPhysicalDeviceMaintenance7PropertiesKHR structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceMaintenance7PropertiesKHR {
     VkStructureType sType();
     void * pNext();
     VkBool32 robustFragmentShadingRateAttachmentAccess();
     VkBool32 separateDepthStencilAttachmentAccess();
     uint32_t maxDescriptorSetTotalUniformBuffersDynamic();
     uint32_t maxDescriptorSetTotalStorageBuffersDynamic();
     uint32_t maxDescriptorSetTotalBuffersDynamic();
     uint32_t maxDescriptorSetUpdateAfterBindTotalUniformBuffersDynamic();
     uint32_t maxDescriptorSetUpdateAfterBindTotalStorageBuffersDynamic();
     uint32_t maxDescriptorSetUpdateAfterBindTotalBuffersDynamic();
 }