Class VkPhysicalDevicePointClippingProperties

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
    Direct Known Subclasses:
    VkPhysicalDevicePointClippingPropertiesKHR

    public class VkPhysicalDevicePointClippingProperties
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing the point clipping behavior supported by an implementation.
    Description

    If the VkPhysicalDevicePointClippingProperties 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.
    • pointClippingBehavior – the point clipping behavior supported by the implementation, and is of type VkPointClippingBehavior.

    Layout

    
     struct VkPhysicalDevicePointClippingProperties {
         VkStructureType sType;
         void * pNext;
         VkPointClippingBehavior pointClippingBehavior;
     }