Class VkSubpassDescriptionDepthStencilResolve

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkSubpassDescriptionDepthStencilResolve>
org.lwjgl.vulkan.VkSubpassDescriptionDepthStencilResolve
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkSubpassDescriptionDepthStencilResolveKHR

public class VkSubpassDescriptionDepthStencilResolve extends org.lwjgl.system.Struct<VkSubpassDescriptionDepthStencilResolve> implements org.lwjgl.system.NativeResource
Structure specifying depth/stencil resolve operations for a subpass.
Description

If the pNext chain of VkSubpassDescription2 includes a VkSubpassDescriptionDepthStencilResolve structure, then that structure describes multisample resolve operations for the depth/stencil attachment in a subpass. If this structure is not included in the pNext chain of VkSubpassDescription2, or if it is and either pDepthStencilResolveAttachment is NULL or its attachment index is ATTACHMENT_UNUSED, it indicates that no depth/stencil resolve attachment will be used in the subpass.

Valid Usage
Valid Usage (Implicit)
See Also

VkAttachmentReference2

Layout


 struct VkSubpassDescriptionDepthStencilResolve {
     VkStructureType sType();
     void const * pNext();
     VkResolveModeFlagBits depthResolveMode();
     VkResolveModeFlagBits stencilResolveMode();
     VkAttachmentReference2 const * pDepthStencilResolveAttachment();
 }