Class VkPhysicalDeviceExclusiveScissorFeaturesNV

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

    public class VkPhysicalDeviceExclusiveScissorFeaturesNV
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing exclusive scissor features that can be supported by an implementation.
    Description

    See Exclusive Scissor Test for more information.

    If the VkPhysicalDeviceExclusiveScissorFeaturesNV structure is included in the pNext chain of VkPhysicalDeviceFeatures2, it is filled with values indicating whether the feature is supported. VkPhysicalDeviceExclusiveScissorFeaturesNV can also be used in the pNext chain of VkDeviceCreateInfo to enable the feature.

    Valid Usage (Implicit)

    Member documentation

    • exclusiveScissor – indicates that the implementation supports the exclusive scissor test.

    Layout

    
     struct VkPhysicalDeviceExclusiveScissorFeaturesNV {
         VkStructureType sType;
         void * pNext;
         VkBool32 exclusiveScissor;
     }