Class VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX

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

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

    If the VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX 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.
    • perViewPositionAllComponentsTRUE if the implementation supports per-view position values that differ in components other than the X component.

    Layout

    
     struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
         VkStructureType sType;
         void * pNext;
         VkBool32 perViewPositionAllComponents;
     }