Class VkMultiviewPerViewAttributesInfoNVX

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkMultiviewPerViewAttributesInfoNVX>
org.lwjgl.vulkan.VkMultiviewPerViewAttributesInfoNVX
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkMultiviewPerViewAttributesInfoNVX extends org.lwjgl.system.Struct<VkMultiviewPerViewAttributesInfoNVX> implements org.lwjgl.system.NativeResource
Structure specifying the multiview per-attribute properties.
Description

When dynamic render pass instances are being used, instead of specifying SUBPASS_DESCRIPTION_PER_VIEW_ATTRIBUTES_BIT_NVX or SUBPASS_DESCRIPTION_PER_VIEW_POSITION_X_ONLY_BIT_NVX in the subpass description flags, the per-attribute properties of the render pass instance must be specified by the VkMultiviewPerViewAttributesInfoNVX structure Include the VkMultiviewPerViewAttributesInfoNVX structure in the pNext chain of VkGraphicsPipelineCreateInfo when creating a graphics pipeline for dynamic rendering, VkRenderingInfo when starting a dynamic render pass instance, and VkCommandBufferInheritanceInfo when specifying the dynamic render pass instance parameters for secondary command buffers.

Valid Usage (Implicit)

Layout


 struct VkMultiviewPerViewAttributesInfoNVX {
     VkStructureType sType();
     void const * pNext();
     VkBool32 perViewAttributes();
     VkBool32 perViewAttributesPositionXOnly();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • STYPE

      public static final int STYPE
      The struct member offsets.
    • PNEXT

      public static final int PNEXT
      The struct member offsets.
    • PERVIEWATTRIBUTES

      public static final int PERVIEWATTRIBUTES
      The struct member offsets.
    • PERVIEWATTRIBUTESPOSITIONXONLY

      public static final int PERVIEWATTRIBUTESPOSITIONXONLY
      The struct member offsets.
  • Constructor Details

    • VkMultiviewPerViewAttributesInfoNVX

      public VkMultiviewPerViewAttributesInfoNVX(ByteBuffer container)
      Creates a VkMultiviewPerViewAttributesInfoNVX instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details