vulkan-3.11.3: Bindings to the Vulkan graphics API.
Safe HaskellNone
LanguageHaskell2010

Vulkan.Extensions.VK_KHR_create_renderpass2

Description

Name

VK_KHR_create_renderpass2 - device extension

VK_KHR_create_renderpass2

Name String
VK_KHR_create_renderpass2
Extension Type
Device extension
Registered Extension Number
110
Revision
1
Extension and Version Dependencies
  • Requires Vulkan 1.0
  • Requires VK_KHR_multiview
  • Requires VK_KHR_maintenance2
Deprecation state
Contact

Other Extension Metadata

Last Modified Date
2018-02-07
Interactions and External Dependencies
  • Promoted to Vulkan 1.2 Core
Contributors
  • Tobias Hector
  • Jeff Bolz

Description

This extension provides a new entry point to create render passes in a way that can be easily extended by other extensions through the substructures of render pass creation. The Vulkan 1.0 render pass creation sub-structures do not include sType/pNext members. Additionally, the renderpass begin/next/end commands have been augmented with new extensible structures for passing additional subpass information.

The RenderPassMultiviewCreateInfo and InputAttachmentAspectReference structures that extended the original RenderPassCreateInfo are not accepted into the new creation functions, and instead their parameters are folded into this extension as follows:

The details of these mappings are explained fully in the new structures.

Promotion to Vulkan 1.2

All functionality in this extension is included in core Vulkan 1.2, with the KHR suffix omitted. The original type, enum and command names are still available as aliases of the core functionality.

New Commands

New Structures

New Enum Constants

Version History

  • Revision 1, 2018-02-07 (Tobias Hector)

    • Internal revisions

See Also

AttachmentDescription2KHR, AttachmentReference2KHR, RenderPassCreateInfo2KHR, SubpassBeginInfoKHR, SubpassDependency2KHR, SubpassDescription2KHR, SubpassEndInfoKHR, cmdBeginRenderPass2KHR, cmdEndRenderPass2KHR, cmdNextSubpass2KHR, createRenderPass2KHR

Document Notes

For more information, see the Vulkan Specification

This page is a generated document. Fixes and changes should be made to the generator scripts, not directly.

Documentation

type KHR_CREATE_RENDERPASS_2_EXTENSION_NAME = "VK_KHR_create_renderpass2" Source #

pattern KHR_CREATE_RENDERPASS_2_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a Source #