mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-09 04:54:08 +00:00
* Update release number to 92. Public Issues: * Move and modify valid usage statements dealing with pname:aspectMask in flink:vkCmdClearColorImage, flink:vkCmdClearDepthStencilImage, and slink:VkClearAttachment, so they are in places where all necessary information is available (public issue 529). * Fix math markup in <<textures-texel-anisotropic-filtering, Texel Anisotropic Filtering>> (public pull request 840). * Fix misspellings (public pull request 845). Internal Issues: * Add installation instructions and a Makefile "`chunked`" target for chunked HTML generation (internal issue 1352). * Fix pipeline mesh diagram style; also fix a minor bug in the classic pipeline diagram where vertex/index buffers wrongly fed into the vertex shader (internal issue 1436). * Make asciidoctor ERROR output raise an error, and don't suppress executed command output from CI make invocation (internal issue 1454). * Minor typo fixes and clarifications for `VK_NV_raytracing`. * Cleanup extension-specific properties ** Remove duplicated documentation for pname:maxDiscardRectangles, pname:pointClippingBehavior, and pname:maxVertexAttribDivisor (they shouldn't be documented with the other members of slink:VkPhysicalDeviceLimits at all). ** Remove duplicate anchor for pname:maxVertexAttribDivisor ** Consistently document stext:VkPhysicalDevice<Extension>PropertiesKHR *** Always document pname:sType/pname:pNext (was inconsistent before) *** Always mention chaining to slink:VkPhysicalDeviceProperties2 (and not as slink:VkPhysicalDeviceProperties2KHR) *** Always include Valid Usage statements last * Update Makefile 'checklinks' target and associated scripts, and fix markup problems identified by checkLinks.py, so that we can rely on the checklinks script as part of Gitlab CI.
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
// Copyright (c) 2016-2018 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_descriptor_update_template.txt[]
|
|
|
|
*Last Modified Date*::
|
|
2017-09-05
|
|
*IP Status*::
|
|
No known IP claims.
|
|
*Interactions and External Dependencies*::
|
|
- Interacts with `<<VK_KHR_push_descriptor>>`
|
|
- Promoted to Vulkan 1.1 Core
|
|
*Contributors*::
|
|
- Jeff Bolz, NVIDIA
|
|
- Michael Worcester, Imagination Technologies
|
|
|
|
Applications may wish to update a fixed set of descriptors in a large number
|
|
of descriptors sets very frequently, i.e. during initializaton phase or if
|
|
it's required to rebuild descriptor sets for each frame.
|
|
For those cases it's also not unlikely that all information required to
|
|
update a single descriptor set is stored in a single struct.
|
|
This extension provides a way to update a fixed set of descriptors in a
|
|
single slink:VkDescriptorSet with a pointer to a user defined data structure
|
|
which describes the new descriptors.
|
|
|
|
|
|
=== New Object Types
|
|
|
|
* sname:VkDescriptorUpdateTemplateKHR
|
|
|
|
=== New Enum Constants
|
|
|
|
Extending elink:VkStructureType:
|
|
|
|
** ename:VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO_KHR
|
|
|
|
=== New Enums
|
|
|
|
* tlink:VkDescriptorUpdateTemplateCreateFlagsKHR
|
|
* elink:VkDescriptorUpdateTemplateTypeKHR
|
|
|
|
=== New Structures
|
|
|
|
* slink:VkDescriptorUpdateTemplateEntryKHR
|
|
* slink:VkDescriptorUpdateTemplateCreateInfoKHR
|
|
|
|
=== New Functions
|
|
|
|
* flink:vkCreateDescriptorUpdateTemplateKHR
|
|
* flink:vkDestroyDescriptorUpdateTemplateKHR
|
|
* flink:vkUpdateDescriptorSetWithTemplateKHR
|
|
ifdef::VK_KHR_push_descriptor[]
|
|
* flink:vkCmdPushDescriptorSetWithTemplateKHR
|
|
endif::VK_KHR_push_descriptor[]
|
|
|
|
=== Promotion to Vulkan 1.1
|
|
|
|
ifdef::VK_KHR_push_descriptor[]
|
|
flink:vkCmdPushDescriptorSetWithTemplateKHR is included as an interaction
|
|
with `<<VK_KHR_push_descriptor>>`.
|
|
If Vulkan 1.1 and VK_KHR_push_descriptor are supported, this is included by
|
|
`<<VK_KHR_push_descriptor>>`.
|
|
endif::VK_KHR_push_descriptor[]
|
|
|
|
The base functionality in this extension is included in core Vulkan 1.1,
|
|
with the KHR suffix omitted.
|
|
The original type, enum and command names are still available as aliases of
|
|
the core functionality.
|
|
|
|
=== Version History
|
|
|
|
* Revision 1, 2016-01-11 (Markus Tavenrath)
|
|
- Initial draft
|