5abf83f95d
* Update release number to 107. Public Issues: * Fix revision date for the `<<VK_AMD_gpu_shader_half_float>>` appendix (public issue 617). * Make <<synchronization-pipeline-barriers-subpass-self-dependencies, subpass self-dependencies>> less restrictive (public issue 777). * Fix the `<<VK_EXT_full_screen_exclusive>>` dependency on `<<VK_KHR_win32_surface>>` in `vk.xml` (public pull request 849). * Remove single-page (`apispec.html`) refpage sub-targets from the Makefile `allman` target and the build instructions. The target is still present in the Makefile, but we have not been actively maintaining the single-page document and do not promise it will work. The full Specification and the individual API reference pages are what we support and publish at present (public issue 949). Internal Issues: * De-duplicate common valid usage statements shared by multiple commands or structures by using asciidoctor includes and dynamically assigning part of the valid usage ID based on which command or structure they're being applied to (internal issue 779). * Add reference pages for constructs not part of the formal API, such as platform calling convention macros, and script changes supporting them This required suppressing some check_spec_links warning classes in order to pass CI, until a more sophisticated fix can be done (internal issue 888). * Change math notation for the elink:VkPrimitiveTopology descriptions to use short forms `v` and `p` instead of `vertex` and `primitive`, increasing legibility (internal issue 1611). * Rewrite generated file includes relative to a globally specified path, fixing some issues with refpage generation (internal issue 1630). * Update contributor list for `<<VK_EXT_calibrated_timestamps>>`. * Fix use of pathlin in `scripts/generator.py` so the script will work on Windows under Python 3.5 (internal merge request 3107). * Add missing conditionals around the <<descriptorsets-accelerationstructure, Acceleration Structure>> section (internal merge request 3108). * More script synchronization with OpenXR spec repository (internal merge request 3109). * Mark the `<<VK_AMD_gpu_shader_half_float>>` and `<<VK_AMD_gpu_shader_int16>>` extensions as deprecated in `vk.xml` and the corresponding extension appendices (internal merge request 3112). New Extensions: * `<<VK_EXT_headless_surface>>` |
||
---|---|---|
.gitlab/issue_templates | ||
appendices | ||
chapters | ||
config | ||
images | ||
include/vulkan | ||
katex | ||
man | ||
out | ||
scripts | ||
src/ext_loader | ||
style | ||
tests | ||
xml | ||
.gitattributes | ||
.gitignore | ||
.gitlab-ci.yml | ||
BUILD.adoc | ||
CODE_OF_CONDUCT.md | ||
COPYING.md | ||
ChangeLog.txt | ||
Makefile | ||
README.adoc | ||
copyright-ccby.txt | ||
copyright-spec.txt | ||
installRelease | ||
makeAllExts | ||
makeExt | ||
makeKHR | ||
refPageNotes.md | ||
registry.txt | ||
sandboxCopy | ||
styleguide.txt | ||
update_valid_usage_ids.sh | ||
vkspec.txt |
README.adoc
ifdef::env-github[] :note-caption: :information_source: endif::[] = Vulkan^(R)^ API Documentation Project This repository contains sources for the formal documentation of the Vulkan API. This includes: [options="compact"] * The Vulkan API Specification * Specification of Vulkan extensions * API reference ("`man`") pages * The XML API Registry (also mirrored at https://github.com/KhronosGroup/Vulkan-Headers) * Vulkan header files (also mirrored at https://github.com/KhronosGroup/Vulkan-Headers) * Related tools and scripts. The authoritative public repository is located at https://github.com/KhronosGroup/Vulkan-Docs/. It hosts a public Issue tracker, and outside developers can file proposed patches (Pull Requests) against the Specification, subject to approval by Khronos. If in doubt where to submit your Issue, consult the https://github.com/KhronosGroup/Vulkan-Ecosystem repo. == Branch Structure Everything is now maintained in the `master` branch of the repository. From this branch it is possible to generate both Vulkan 1.1 and Vulkan 1.0 Specifications, as well as specifications for any set of Extensions. == Directory Structure The directory structure is as follows: ``` README.adoc This file BUILD.adoc Documents how to build the specifications, and man pages COPYING.md Copyright and licensing information CODE_OF_CONDUCT.md Code of Conduct ChangeLog.txt Change log summary for each public spec update Makefile, make* Makefile and helper build scripts (see BUILD.adoc) appendices/ Specification appendices chapters/ Specification chapters config/ Asciidoctor configuration, CSS, and index generator images/ Images (figures, diagrams, icons) man/ Reference (man) pages for the API; mostly extracted from the spec source out/ Default directory for the generated documents scripts/ Helper scripts used in specification, header, and reference page generation style/ Sources for "styleguide" (Vulkan Documentation and Extensions: Procedures and Conventions) xml/ XML API Registry (vk.xml) registry.txt Sources for documentation of the vk.xml format ``` == Building the Specification and Reference Pages The document sources are marked up in Asciidoctor format, and we use `asciidoctor` and related toolchain components to generate output documents. See link:BUILD.adoc[BUILD.adoc] for more information on installing the toolchain and building the Specification. == Generating Headers and Related Files See link:xml/README.adoc[xml/README.adoc]. The header files (`include/vulkan/vulkan*.h`) and many parts of the specification and reference page documents are generated from descriptions in the XML API Registry (`xml/vk.xml`). The generated files are not checked into the repository. If you change `vk.xml`, you can regenerate the headers by going into `xml/` and running: $ make clean install The other generated files are built as required via dependencies in the top-level `Makefile`.