mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-20 19:29:58 +00:00
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>>`
235 lines
7.7 KiB
Python
235 lines
7.7 KiB
Python
#!/usr/bin/python3 -i
|
|
#
|
|
# Copyright (c) 2013-2019 The Khronos Group Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Working-group-specific style conventions,
|
|
# used in generation.
|
|
|
|
import re
|
|
|
|
from conventions import ConventionsBase
|
|
|
|
|
|
class VulkanConventions(ConventionsBase):
|
|
def formatExtension(self, name):
|
|
"""Mark up a name as an extension for the spec."""
|
|
return '`<<{}>>`'.format(name)
|
|
|
|
@property
|
|
def null(self):
|
|
"""Preferred spelling of NULL."""
|
|
return '`NULL`'
|
|
|
|
@property
|
|
def constFlagBits(self):
|
|
"""Returns True if static const flag bits should be generated, False if an enumerated type should be generated."""
|
|
return False
|
|
|
|
@property
|
|
def struct_macro(self):
|
|
return 'sname:'
|
|
|
|
@property
|
|
def external_macro(self):
|
|
return 'code:'
|
|
|
|
@property
|
|
def structtype_member_name(self):
|
|
"""Return name of the structure type member"""
|
|
return 'sType'
|
|
|
|
@property
|
|
def nextpointer_member_name(self):
|
|
"""Return name of the structure pointer chain member"""
|
|
return 'pNext'
|
|
|
|
@property
|
|
def valid_pointer_prefix(self):
|
|
"""Return prefix to pointers which must themselves be valid"""
|
|
return 'valid'
|
|
|
|
def is_structure_type_member(self, paramtype, paramname):
|
|
"""Determine if member type and name match the structure type member."""
|
|
return paramtype == 'VkStructureType' and paramname == self.structtype_member_name
|
|
|
|
def is_nextpointer_member(self, paramtype, paramname):
|
|
"""Determine if member type and name match the next pointer chain member."""
|
|
return paramtype == 'void' and paramname == self.nextpointer_member_name
|
|
|
|
def generate_structure_type_from_name(self, structname):
|
|
"""Generate a structure type name, like VK_STRUCTURE_TYPE_CREATE_INSTANCE_INFO"""
|
|
structure_type_parts = []
|
|
# Tokenize into "words"
|
|
for elem in re.findall(r'(([A-Z][a-z]+)|([A-Z][A-Z]+))', structname):
|
|
if elem[0] == 'Vk':
|
|
structure_type_parts.append('VK_STRUCTURE_TYPE')
|
|
else:
|
|
structure_type_parts.append(elem[0].upper())
|
|
return '_'.join(structure_type_parts)
|
|
|
|
@property
|
|
def warning_comment(self):
|
|
"""Return warning comment to be placed in header of generated Asciidoctor files"""
|
|
return '// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry'
|
|
|
|
@property
|
|
def file_suffix(self):
|
|
"""Return suffix of generated Asciidoctor files"""
|
|
return '.txt'
|
|
|
|
def api_name(self, spectype = 'api'):
|
|
"""Return API or specification name for citations in ref pages.ref
|
|
pages should link to for
|
|
|
|
spectype is the spec this refpage is for: 'api' is the Vulkan API
|
|
Specification. Defaults to 'api'. If an unrecognized spectype is
|
|
given, returns None.
|
|
"""
|
|
if spectype == 'api' or spectype is None:
|
|
return 'Vulkan'
|
|
else:
|
|
return None
|
|
|
|
@property
|
|
def xml_supported_name_of_api(self):
|
|
"""Return the supported= attribute used in API XML"""
|
|
return 'vulkan'
|
|
|
|
@property
|
|
def api_prefix(self):
|
|
"""Return API token prefix"""
|
|
return 'VK_'
|
|
|
|
@property
|
|
def api_version_prefix(self):
|
|
"""Return API core version token prefix"""
|
|
return 'VK_VERSION_'
|
|
|
|
@property
|
|
def KHR_prefix(self):
|
|
"""Return extension name prefix for KHR extensions"""
|
|
return 'VK_KHR_'
|
|
|
|
@property
|
|
def EXT_prefix(self):
|
|
"""Return extension name prefix for EXT extensions"""
|
|
return 'VK_EXT_'
|
|
|
|
@property
|
|
def write_contacts(self):
|
|
"""Return whether contact list should be written to extension appendices"""
|
|
return True
|
|
|
|
@property
|
|
def write_refpage_include(self):
|
|
"""Return whether refpage include should be written to extension appendices"""
|
|
return True
|
|
|
|
def writeFeature(self, featureExtraProtect, filename):
|
|
"""Returns True if OutputGenerator.endFeature should write this feature.
|
|
Used in COutputGenerator
|
|
"""
|
|
return True
|
|
|
|
def requires_error_validation(self, return_type):
|
|
"""Returns True if the return_type element is an API result code
|
|
requiring error validation.
|
|
"""
|
|
return False
|
|
|
|
@property
|
|
def required_errors(self):
|
|
"""Return a list of required error codes for validation."""
|
|
return []
|
|
|
|
def is_externsync_command(self, protoname):
|
|
"""Returns True if the protoname element is an API command requiring
|
|
external synchronization
|
|
"""
|
|
return protoname is not None and 'vkCmd' in protoname
|
|
|
|
def is_api_name(self, name):
|
|
"""Returns True if name is in the reserved API namespace.
|
|
For Vulkan, these are names with a case-insensitive 'vk' prefix, or
|
|
a 'PFN_vk' function pointer type prefix.
|
|
"""
|
|
return name[0:2].lower() == 'vk' or name[0:6] == 'PFN_vk'
|
|
|
|
def is_voidpointer_alias(self, tag, text, tail):
|
|
"""Return True if the declaration components (tag,text,tail) of an
|
|
element represents a void * type
|
|
"""
|
|
return tag == 'type' and text == 'void' and tail.startswith('*')
|
|
|
|
def make_voidpointer_alias(self, tail):
|
|
"""Reformat a void * declaration to include the API alias macro.
|
|
Vulkan doesn't have an API alias macro, so do nothing.
|
|
"""
|
|
return tail
|
|
|
|
def specURL(self, spectype = 'api'):
|
|
"""Return public registry URL which ref pages should link to for the
|
|
current all-extensions HTML specification, so xrefs in the
|
|
asciidoc source that aren't to ref pages can link into it
|
|
instead. N.b. this may need to change on a per-refpage basis if
|
|
there are multiple documents involved.
|
|
"""
|
|
return 'https://www.khronos.org/registry/vulkan/specs/1.1-extensions/html/vkspec.html'
|
|
|
|
@property
|
|
def xml_api_name(self):
|
|
"""Return the name used in the default API XML registry for the default API"""
|
|
return 'vulkan'
|
|
|
|
@property
|
|
def registry_path(self):
|
|
"""Return relpath to the default API XML registry in this project."""
|
|
return 'xml/vk.xml'
|
|
|
|
@property
|
|
def specification_path(self):
|
|
"""Return relpath to the Asciidoctor specification sources in this project."""
|
|
return '../appendices/meta'
|
|
|
|
@property
|
|
def extra_refpage_headers(self):
|
|
"""Return any extra text to add to refpage headers."""
|
|
return 'include::../config/attribs.txt[]'
|
|
|
|
@property
|
|
def extension_index_prefixes(self):
|
|
"""Return a list of extension prefixes used to group extension refpages."""
|
|
return ['VK_KHR', 'VK_EXT', 'VK']
|
|
|
|
@property
|
|
def unified_flag_refpages(self):
|
|
"""Returns True if Flags/FlagBits refpages are unified, False if
|
|
they're separate.
|
|
"""
|
|
return False
|
|
|
|
@property
|
|
def spec_reflow_path(self):
|
|
"""Return the relative path to the spec source folder to reflow"""
|
|
return '.'
|
|
|
|
@property
|
|
def spec_no_reflow_dirs(self):
|
|
"""Return a set of directories not to automatically descend into
|
|
when reflowing spec text
|
|
"""
|
|
return ('scripts', 'style')
|
|
|