mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-17 00:36:24 +00:00
* Update release number to 97. Public Issues: * Add a special case to the <<renderpass-compatibility, Render Pass Compatibility>> rules allowing single-subpass renderpasses to be compatible even if they have different resolve attachment references (public issue 835). * Fix the miss shader binding table record address rule in the <<shader-binding-table-indexing-rules, Miss Shaders>> section to index by code:missIndex, not code:sbtOffset (public issue 875). Internal Issues: * Add a missing anchor to the elink:VkSamplerCreateFlagBits language (internal issue 1483). * Add missing implicit valid usage include for slink:VkHdrMetadataEXT and corresponding `noautovalidity` attributes in `vk.xml` for the externally-defined metadata properties (internal issue 1514). * Remove restrictions on the `mask` parameter of SPIR-V's code:OpGroupNonUniformXor in the <<spirvenv-module-validation, Validation Rules within a Module>> appendix (internal merge request 2971). * Restore `noautovalidity` attribute for slink:VkPipelineViewportWScalingStateCreateInfoNV::pname:pViewportWScalings in `vk.xml` (internal merge request 2975). * Update copyright dates on Khronos-copyrighted files to 2019 (internal merge request 2980). New Extensions: * `VK_KHR_depth_stencil_resolve` * `VK_EXT_buffer_device_address` * `VK_EXT_memory_budget` * `VK_EXT_memory_priority` * `VK_EXT_validation_features`
83 lines
2.1 KiB
Plaintext
83 lines
2.1 KiB
Plaintext
// Copyright (c) 2014-2019 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
include::meta/VK_KHR_swapchain_mutable_format.txt[]
|
|
|
|
*Last Modified Date*::
|
|
2018-03-28
|
|
*IP Status*::
|
|
No known IP claims.
|
|
*Contributors*::
|
|
- Jason Ekstrand, Intel
|
|
- Jan-Harald Fredriksen, ARM
|
|
- Jesse Hall, Google
|
|
- Daniel Rakos, AMD
|
|
- Ray Smith, ARM
|
|
|
|
=== Short Description
|
|
|
|
Allows processing of swapchain images as different formats to that used by
|
|
the window system, which is particularly useful for switching between sRGB
|
|
and linear RGB formats.
|
|
|
|
=== Description
|
|
|
|
This extension adds a new swapchain creation flag that enables creating
|
|
image views from presentable images with a different format than the one
|
|
used to create the swapchain.
|
|
|
|
=== New Object Types
|
|
|
|
None.
|
|
|
|
=== New Enum Constants
|
|
|
|
* Extending elink:VkSwapchainCreateFlagBitsKHR:
|
|
** ename:VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR
|
|
|
|
=== New Enums
|
|
|
|
None.
|
|
|
|
=== New Structures
|
|
|
|
None.
|
|
|
|
=== New Functions
|
|
|
|
None.
|
|
|
|
=== Issues
|
|
|
|
1) Are there any new capabilities needed?
|
|
|
|
*RESOLVED*: No.
|
|
It is expected that all implementations exposing this extension support
|
|
swapchain image format mutability.
|
|
|
|
2) Do we need a separate etext:VK_SWAPCHAIN_CREATE_EXTENDED_USAGE_BIT_KHR?
|
|
|
|
*RESOLVED*: No.
|
|
This extension requires `VK_KHR_maintenance2` and presentable images of
|
|
swapchains created with ename:VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR are
|
|
created internally in a way equivalent to specifying both
|
|
ename:VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT and
|
|
ename:VK_IMAGE_CREATE_EXTENDED_USAGE_BIT_KHR.
|
|
|
|
3) Do we need a separate structure to allow specifying an image format list
|
|
for swapchains?
|
|
|
|
*RESOLVED*: No.
|
|
We simply use the same slink:VkImageFormatListCreateInfoKHR structure
|
|
introduced by `VK_KHR_image_format_list`.
|
|
The structure is required to be included in the pname:pNext chain of
|
|
slink:VkSwapchainCreateInfoKHR for swapchains created with
|
|
ename:VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR.
|
|
|
|
|
|
=== Version History
|
|
|
|
* Revision 1, 2018-03-28 (Daniel Rakos)
|
|
- Internal revisions.
|