Class VkRenderPassInputAttachmentAspectCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer
Direct Known Subclasses:
VkRenderPassInputAttachmentAspectCreateInfoKHR

public class VkRenderPassInputAttachmentAspectCreateInfo extends Struct<VkRenderPassInputAttachmentAspectCreateInfo> implements NativeResource
Structure specifying, for a given subpass/input attachment pair, which aspect can be read.
Description

To specify which aspects of an input attachment can be read, add a VkRenderPassInputAttachmentAspectCreateInfo structure to the pNext chain of the VkRenderPassCreateInfo structure:

An application can access any aspect of an input attachment that does not have a specified aspect mask in the pAspectReferences array. Otherwise, an application must not access aspect(s) of an input attachment other than those in its specified aspect mask.

Valid Usage (Implicit)
See Also

VkInputAttachmentAspectReference

Layout


 struct VkRenderPassInputAttachmentAspectCreateInfo {
     VkStructureType sType();
     void const * pNext();
     uint32_t aspectReferenceCount();
     VkInputAttachmentAspectReference const * pAspectReferences();
 }