Class VkPhysicalDeviceDiscardRectanglePropertiesEXT

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkPhysicalDeviceDiscardRectanglePropertiesEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing discard rectangle limits that can be supported by an implementation.
    Description

    If the VkPhysicalDeviceDiscardRectanglePropertiesEXT structure is included in the pNext chain of VkPhysicalDeviceProperties2, it is filled with the implementation-dependent limits.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • maxDiscardRectangles – the maximum number of active discard rectangles that can be specified.

    Layout

    
     struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
         VkStructureType sType;
         void * pNext;
         uint32_t maxDiscardRectangles;
     }