mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-11 14:34:08 +00:00
ee13fc355f
* Update release number to 76. Internal Issues: * Add an exception clause to the license on `vk.xml`, enabling its use with GPL-based projects (internal issue 1017). * Remove the generated `vulkan_ext.[ch]` files, which are no longer supported. Add `src/ext_loader/README.md` explaining why, and update files in `xml/` to not generate them by default (internal issue 1268) Other Issues: * Fix typos in valid usage statements for the ftext:vkDrawIndexedIndirectCount* commands, replacing sizeof(VkDrawIndirectComment) with sizeof(VkDrawIndexedIndirectCommand). * Modify the <<spirvenv-module-validation, Validation Rules within a Module>> section to require code:NonReadable or code:NonWriteable in SPIR-V code for images with an image format of code:Unknown if one of the requisite code:shaderImageReadWithoutFormat or code:shaderImageWriteWithoutFormat features is disabled. New Extensions: * `VK_KHR_get_display_properties2` * `VK_KHR_draw_indirect_count`
36 lines
1013 B
Plaintext
36 lines
1013 B
Plaintext
// Copyright (c) 2016-2017 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_draw_indirect_count.txt[]
|
|
|
|
*Status*::
|
|
Draft
|
|
*Last Modified Date*::
|
|
2017-08-25
|
|
*IP Status*::
|
|
No known IP claims.
|
|
*Contributors*::
|
|
- Matthaeus G. Chajdas, AMD
|
|
- Derrick Owens, AMD
|
|
- Graham Sellers, AMD
|
|
- Daniel Rakos, AMD
|
|
- Dominik Witczak, AMD
|
|
- Piers Daniell, NVIDIA
|
|
|
|
This extension is based off the VK_AMD_draw_indirect_count extension.
|
|
This extension allows an application to source the number of draw calls for
|
|
indirect draw calls from a buffer.
|
|
This enables applications to generate arbitrary amounts of draw commands and
|
|
execute them without host intervention.
|
|
|
|
=== New Functions
|
|
|
|
* flink:vkCmdDrawIndirectCountKHR
|
|
* flink:vkCmdDrawIndexedIndirectCountKHR
|
|
|
|
=== Version History
|
|
|
|
* Revision 1, 2017-08-25 (Piers Daniell)
|
|
- Initial draft based off VK_AMD_draw_indirect_count
|