Class VkPhysicalDeviceMultiviewProperties

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

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

    If the VkPhysicalDeviceMultiviewProperties 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.
    • maxMultiviewViewCount – one greater than the maximum view index that can be used in a subpass.
    • maxMultiviewInstanceIndex – the maximum valid value of instance index allowed to be generated by a drawing command recorded within a subpass of a multiview render pass instance.

    Layout

    
     struct VkPhysicalDeviceMultiviewProperties {
         VkStructureType sType;
         void * pNext;
         uint32_t maxMultiviewViewCount;
         uint32_t maxMultiviewInstanceIndex;
     }