Class VkSubpassDescriptionDepthStencilResolveKHR

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

    public class VkSubpassDescriptionDepthStencilResolveKHR
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying depth/stencil resolve operations for a subpass.
    Valid Usage
    Valid Usage (Implicit)
    See Also

    VkAttachmentReference2KHR

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • depthResolveMode – a bitmask of VkResolveModeFlagBitsKHR describing the depth resolve mode.
    • stencilResolveMode – a bitmask of VkResolveModeFlagBitsKHR describing the stencil resolve mode.
    • pDepthStencilResolveAttachment – an optional VkAttachmentReference structure defining the depth/stencil resolve attachment for this subpass and its layout.

    Layout

    
     struct VkSubpassDescriptionDepthStencilResolveKHR {
         VkStructureType sType;
         void const * pNext;
         VkResolveModeFlagBitsKHR depthResolveMode;
         VkResolveModeFlagBitsKHR stencilResolveMode;
         VkAttachmentReference2KHR const * pDepthStencilResolveAttachment;
     }