2016-02-16 09:53:44 +00:00
|
|
|
# Copyright (c) 2013-2016 The Khronos Group Inc.
|
|
|
|
#
|
2016-04-21 08:08:38 +00:00
|
|
|
# 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
|
2016-02-16 09:53:44 +00:00
|
|
|
#
|
2016-04-21 08:08:38 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2016-02-16 09:53:44 +00:00
|
|
|
#
|
2016-04-21 08:08:38 +00:00
|
|
|
# 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.
|
2016-02-16 09:53:44 +00:00
|
|
|
|
|
|
|
# Relax NG schema for Khronos Vulkan API Registry XML
|
|
|
|
#
|
|
|
|
# See https://www.khronos.org/vulkan/
|
|
|
|
#
|
|
|
|
# This definition is subject to change (mostly in the form of additions)
|
|
|
|
|
|
|
|
namespace xsd = "http://www.w3.org/2001/XMLSchema-datatypes"
|
|
|
|
|
|
|
|
# Toplevel is a <registry> tag.
|
|
|
|
# May be led by an optional <comment> tag containing e.g. copyrights.
|
|
|
|
start = element registry {
|
|
|
|
(
|
|
|
|
element comment { text } ? |
|
|
|
|
Vendorids * |
|
|
|
|
Tags * |
|
|
|
|
Types * |
|
|
|
|
Enums * |
|
|
|
|
Commands * |
|
|
|
|
Feature * |
|
|
|
|
Extensions *
|
|
|
|
) *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <vendorids> defines a group of vendor IDs
|
|
|
|
Vendorids = element vendorids {
|
|
|
|
Vendorid *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <vendorid> defines a single vendor ID.
|
|
|
|
# name - author ID of the vendor
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
# id - Khronos vendor ID (hexadecimal constant starting at 0x10000)
|
2016-02-16 09:53:44 +00:00
|
|
|
# comment - unused
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
Vendorid = element vendorid {
|
2016-02-16 09:53:44 +00:00
|
|
|
attribute name { text } ,
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
attribute id { text } ,
|
2016-02-16 09:53:44 +00:00
|
|
|
Comment ?
|
|
|
|
}
|
|
|
|
|
|
|
|
# <tags> defines a group of author tags
|
|
|
|
Tags = element tags {
|
|
|
|
Tag *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <tag> defines a single author tag.
|
|
|
|
# name - name of the tag
|
|
|
|
# author - name of the author (usually a company or project name)
|
|
|
|
# contact - contact responsible for the tag (name and contact information)
|
|
|
|
Tag = element tag {
|
|
|
|
attribute name { text } ,
|
|
|
|
attribute author { text } ,
|
|
|
|
attribute contact { text }
|
|
|
|
}
|
|
|
|
|
|
|
|
# <types> defines a group of types
|
|
|
|
Types = element types {
|
|
|
|
Type *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <type> defines a single type. It is usually a C typedef but
|
|
|
|
# may contain arbitrary C code.
|
|
|
|
# name - name of this type, if not present in the <name> tag
|
|
|
|
# api - matches a <feature> api attribute, if present
|
|
|
|
# requires - name of another type definition required by this one
|
2016-08-28 10:47:19 +00:00
|
|
|
# category - if present, 'enum' indicates a matching <enums>
|
|
|
|
# block to generate an enumerated type for, and 'struct'
|
2016-02-16 09:53:44 +00:00
|
|
|
# causes special interpretation of the contents of the type
|
|
|
|
# tag including ... TBD ...
|
2016-08-28 10:47:19 +00:00
|
|
|
# Other allowed values are 'include', 'define', 'handle' and 'bitmask',
|
2016-02-16 09:53:44 +00:00
|
|
|
# which don't change syntactic interpretation but allow organization in
|
|
|
|
# the generated header.
|
|
|
|
# comment - unused
|
2016-08-28 10:47:19 +00:00
|
|
|
# parent - only applicable if category is 'handle'. Notes another type with
|
|
|
|
# the 'handle' category that acts as a parent object for this type.
|
|
|
|
# returnedonly - only applicable if category is 'struct'. Notes that this
|
2016-02-16 09:53:44 +00:00
|
|
|
# struct is going to be filled in by the API, rather than an application
|
|
|
|
# filling it out and passing it to the API.
|
|
|
|
# For types without a category, contents include
|
|
|
|
# <apientry /> - substitutes for an APIENTRY-style macro on output
|
|
|
|
# <name> - contains name of the type being defined
|
|
|
|
# <type> - contains name of types used to define this type. There
|
|
|
|
# may be multiple imbedded <type> tags
|
2016-08-28 10:47:19 +00:00
|
|
|
# For types with category 'enum', contents should be empty
|
|
|
|
# For types with category 'struct', contents should be one or more
|
2016-02-16 09:53:44 +00:00
|
|
|
# <member> - like <param> for a struct or union member
|
|
|
|
# len - if the member is an array, len may be one or more of the following
|
|
|
|
# things, separated by commas (one for each array indirection): another
|
|
|
|
# member of that struct, 'null-terminated' for a string, '1' to indicate it's
|
|
|
|
# just a pointer (used for nested pointers), or a latex equation (prefixed with
|
|
|
|
# 'latex:')
|
|
|
|
# externsync - denotes that the member should be externally synchronized
|
|
|
|
# when accessed by Vulkan
|
|
|
|
# optional - whether this value can be omitted by providing NULL (for
|
|
|
|
# pointers), VK_NULL_HANDLE (for handles) or 0 (for bitmasks/values)
|
|
|
|
# noautovalidity - tag stating that no automatic validity language should be generated
|
Change log for August 5, 2016 Vulkan 1.0.23 spec update:
* Bump API patch number and header version number to 23 for this update.
Github Issues:
* Add explicit valid value attributes to pname:sType members in vk.xml
(public issue 34).
* Clarify usage of flink:vkGetInstanceProcAddr and
flink:vkGetDeviceProcAddr (public issue 225).
* Fix a copy-and-paste error in the description of
pname:pSwapchainImageCount saying that it was the count of ``format
pairs'' instead of ``swapchain images'' (public issue 292).
* flink:vkCmdExecuteCommandBuffers requires all command buffers to be
allocated from command pools created for the same queue family (public
issue 296).
* Remove bogus +optional+ attribute for
flink:vkEnumerateDeviceLayerProperties::pname:physicalDevice from vk.xml
(public issue 301).
* Clean up the <<resources-image-views-compatibility,image and image view
compatibility table>> reference and contents. Use full enumerant names.
Refer to pname:layerCount in the ``view parameters'' column instead of
pname:arrayLayers. Require N >= 1 for the cube array subview row, not
just arrayLayers >= 6 N (public issue 304).
* Modify description of <<resources-memory-aliasing,memory aliasing>> to
be consistent with the description of
<<resources-bufferimagegranularity,buffer image granularity>> (public
issue 307).
Internal Issues:
* Describe remaining +vk_platform.h+ macros in the <<boilerplate,API
Boilerplate>> appendix (internal issue 6).
* Clarify
<<features-features-robustBufferAccess,pname:robustBufferAccess>>
feature behavior; what memory can be accessed, how bounds checking is
performed, and allowing for vectorization (internal issue 332).
* Document markup for automatic extraction of reference pages from the
spec sources in the style guide (internal issue 395).
* Allow flink:vkCreateDisplayModeKHR to return
ename:VK_ERROR_INITIALIZAION_FAILED_KHR if the user requests mode
parameters that the specified display does not support (internal issue
411).
* Remove atomic counters (atomic_uint style) from KHR_vulkan_glsl, and
more clearly remove the subroutine keyword alongside it (internal issue
421).
* Clarify behavior of flink:vkCmdBindDescriptorSets for descriptor sets
not contained in the layout (internal issue 427).
Other Commits:
* Change the order in which members of sname:VkAttachmentDescription and
sname:VkPipelineInputAssemblyStateCreateInfo are described to match
their order in the structures.
2016-08-05 12:11:02 +00:00
|
|
|
# validextensionstructs - comma-separate list of legal structure types in pNext chain
|
|
|
|
# values - comma-separated list of legal values, usually used only for sType enums
|
2016-02-16 09:53:44 +00:00
|
|
|
#
|
|
|
|
# *** There's a problem here: I'm not sure how to represent the <type>
|
|
|
|
# syntax where it may contain arbitrarily interleaved text, <type>, and
|
|
|
|
# <enum> child tags. This allows only the syntax
|
|
|
|
# text <type>name</type> text <enum>name</enum> text
|
|
|
|
# where <type> and <enum> are both optional and occur in the specified
|
|
|
|
# order, which might eventually be a problem.
|
|
|
|
Type = element type {
|
|
|
|
attribute api { text } ? ,
|
|
|
|
attribute requires { text } ? ,
|
|
|
|
attribute name { TypeName } ? ,
|
|
|
|
attribute category { text } ? ,
|
|
|
|
attribute parent { TypeName } ? ,
|
|
|
|
attribute returnedonly { text } ? ,
|
|
|
|
Comment ? ,
|
|
|
|
(
|
|
|
|
(
|
|
|
|
( text ,
|
|
|
|
element type { text } *
|
|
|
|
) * ,
|
|
|
|
element apientry { text } ? ,
|
|
|
|
( text ,
|
|
|
|
element type { text } *
|
|
|
|
) * ,
|
|
|
|
element name { TypeName } ? ,
|
|
|
|
( text ,
|
|
|
|
element type { text } *
|
|
|
|
) *
|
|
|
|
) |
|
|
|
|
(
|
|
|
|
element member {
|
|
|
|
attribute len { text } ? ,
|
|
|
|
attribute externsync { text } ? ,
|
|
|
|
attribute optional { text } ? ,
|
|
|
|
attribute noautovalidity { text } ? ,
|
Change log for August 5, 2016 Vulkan 1.0.23 spec update:
* Bump API patch number and header version number to 23 for this update.
Github Issues:
* Add explicit valid value attributes to pname:sType members in vk.xml
(public issue 34).
* Clarify usage of flink:vkGetInstanceProcAddr and
flink:vkGetDeviceProcAddr (public issue 225).
* Fix a copy-and-paste error in the description of
pname:pSwapchainImageCount saying that it was the count of ``format
pairs'' instead of ``swapchain images'' (public issue 292).
* flink:vkCmdExecuteCommandBuffers requires all command buffers to be
allocated from command pools created for the same queue family (public
issue 296).
* Remove bogus +optional+ attribute for
flink:vkEnumerateDeviceLayerProperties::pname:physicalDevice from vk.xml
(public issue 301).
* Clean up the <<resources-image-views-compatibility,image and image view
compatibility table>> reference and contents. Use full enumerant names.
Refer to pname:layerCount in the ``view parameters'' column instead of
pname:arrayLayers. Require N >= 1 for the cube array subview row, not
just arrayLayers >= 6 N (public issue 304).
* Modify description of <<resources-memory-aliasing,memory aliasing>> to
be consistent with the description of
<<resources-bufferimagegranularity,buffer image granularity>> (public
issue 307).
Internal Issues:
* Describe remaining +vk_platform.h+ macros in the <<boilerplate,API
Boilerplate>> appendix (internal issue 6).
* Clarify
<<features-features-robustBufferAccess,pname:robustBufferAccess>>
feature behavior; what memory can be accessed, how bounds checking is
performed, and allowing for vectorization (internal issue 332).
* Document markup for automatic extraction of reference pages from the
spec sources in the style guide (internal issue 395).
* Allow flink:vkCreateDisplayModeKHR to return
ename:VK_ERROR_INITIALIZAION_FAILED_KHR if the user requests mode
parameters that the specified display does not support (internal issue
411).
* Remove atomic counters (atomic_uint style) from KHR_vulkan_glsl, and
more clearly remove the subroutine keyword alongside it (internal issue
421).
* Clarify behavior of flink:vkCmdBindDescriptorSets for descriptor sets
not contained in the layout (internal issue 427).
Other Commits:
* Change the order in which members of sname:VkAttachmentDescription and
sname:VkPipelineInputAssemblyStateCreateInfo are described to match
their order in the structures.
2016-08-05 12:11:02 +00:00
|
|
|
attribute validextensionstructs { text } ? ,
|
|
|
|
attribute values { text } ? ,
|
2016-02-16 09:53:44 +00:00
|
|
|
mixed {
|
|
|
|
element type { TypeName } ? ,
|
|
|
|
element name { text },
|
|
|
|
element enum { EnumName } ?
|
|
|
|
}
|
2016-10-25 05:22:26 +00:00
|
|
|
} *
|
2016-02-16 09:53:44 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
# <enums> defines a group of enumerants
|
|
|
|
# name - identifies a type name associated with this group. Should
|
|
|
|
# match a <type> name to trigger generation of the type.
|
|
|
|
# start, end - beginning and end of a numeric range
|
|
|
|
# vendor - owner of the numeric range
|
2016-08-28 10:47:19 +00:00
|
|
|
# type - 'enum' or 'bitmask', if present
|
2016-02-16 09:53:44 +00:00
|
|
|
# comment - unused
|
|
|
|
Enums = element enums {
|
|
|
|
attribute name { text } ? ,
|
|
|
|
attribute type { text } ? ,
|
|
|
|
attribute start { Integer } ? ,
|
|
|
|
attribute end { Integer } ? ,
|
|
|
|
Vendor ? ,
|
|
|
|
Comment ? ,
|
|
|
|
(Enum | Unused) *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <enum> defines or references a single enumerant. There are two places it
|
|
|
|
# can be used: in an <enums> block, providing a global definition which
|
|
|
|
# may later be required by a feature or extension; or in a feature or
|
|
|
|
# extension, defining an enumerant specific to that feature. The second
|
|
|
|
# form has more possible attributes. Some combinations of attributes are
|
|
|
|
# nonsensical in on or the other place, but these are not detected by the
|
|
|
|
# validator.
|
|
|
|
#
|
|
|
|
# Ways to specify the enumerant value:
|
|
|
|
# value - integer (including hex) value of the enumerant
|
|
|
|
# bitpos - integer bit position of the enumerant in a bitmask
|
2016-08-28 10:47:19 +00:00
|
|
|
# offset, [dir] - integer offset and direction ('-' for negative,
|
2016-02-16 09:53:44 +00:00
|
|
|
# or positive if not specified) from a base value
|
|
|
|
#
|
|
|
|
# value and bitpos allow, and offset/dir require, the attribute:
|
|
|
|
# extends - type name of the enumerant being extended
|
|
|
|
#
|
|
|
|
# Other attributes:
|
|
|
|
# api - matches a <feature> api attribute, if present
|
2016-08-28 10:47:19 +00:00
|
|
|
# type - 'u' (unsigned), 'ull' (uint64), or integer if not present
|
2016-02-16 09:53:44 +00:00
|
|
|
# name - enumerant name
|
|
|
|
# alias - another enumerant this is semantically identical to
|
|
|
|
# comment - unused
|
|
|
|
Enum = element enum {
|
|
|
|
(
|
|
|
|
(
|
|
|
|
(
|
|
|
|
attribute value { Integer } &
|
|
|
|
attribute extends { TypeName } ?
|
|
|
|
) |
|
|
|
|
(
|
|
|
|
attribute bitpos { Integer } &
|
|
|
|
attribute extends { TypeName } ?
|
|
|
|
) |
|
|
|
|
(
|
|
|
|
attribute offset { Integer } &
|
|
|
|
attribute dir { text } ? &
|
|
|
|
attribute extends { TypeName }
|
|
|
|
)
|
|
|
|
) ? &
|
|
|
|
attribute api { text } ? &
|
|
|
|
attribute type { TypeSuffix } ? &
|
|
|
|
attribute name { text } &
|
|
|
|
attribute alias { text } ? &
|
|
|
|
Comment ?
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
# <unused> defines a range of enumerants not currently being used
|
|
|
|
# start, end - beginning and end of an unused numeric range
|
|
|
|
# vendor - unused
|
|
|
|
# comment - unused
|
|
|
|
Unused = element unused {
|
|
|
|
attribute start { Integer } ,
|
|
|
|
attribute end { Integer } ? ,
|
|
|
|
Vendor ? ,
|
|
|
|
Comment ?
|
|
|
|
}
|
|
|
|
# <commands> defines a group of commands
|
|
|
|
Commands = element commands {
|
|
|
|
Command *
|
|
|
|
}
|
|
|
|
|
|
|
|
# <command> defines a single command
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
#
|
|
|
|
# The possible attributes are not described in this comment block yet, but
|
|
|
|
# are in readme.pdf.
|
|
|
|
#
|
2016-02-16 09:53:44 +00:00
|
|
|
# <proto> is the C function prototype, including the return type
|
|
|
|
# <param> are function parameters, in order
|
|
|
|
# len - if the member is an array, len may be one or more of the following
|
|
|
|
# things, separated by commas (one for each array indirection): another
|
|
|
|
# member of that struct, 'null-terminated' for a string, '1' to indicate it's
|
|
|
|
# just a pointer (used for nested pointers), or a latex equation (prefixed with
|
|
|
|
# 'latex:')
|
|
|
|
# externsync - denotes that the member should be externally synchronized
|
|
|
|
# when accessed by Vulkan
|
|
|
|
# optional - whether this value can be omitted by providing NULL (for
|
|
|
|
# pointers), VK_NULL_HANDLE (for handles) or 0 (for bitmasks/values)
|
|
|
|
# noautovalidity - tag stating that no automatic validity language should be generated
|
|
|
|
# <type> is a <type> name, if present
|
|
|
|
# <name> is the function / parameter name
|
|
|
|
# The textual contents of <proto> and <param> should be legal C
|
|
|
|
# for those parts of a function declaration.
|
|
|
|
# <alias> - denotes function aliasing, if present
|
|
|
|
# name - name of aliased function
|
|
|
|
# <description> - unused text
|
|
|
|
# <implicitexternsyncparams> are spec-language descriptions of
|
|
|
|
# objects that are not parameters of the command, but
|
|
|
|
# are related to them and also require external synchronization.
|
|
|
|
Command = element command {
|
|
|
|
attribute queues { text } ? ,
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
attribute successcodes { text } ? ,
|
|
|
|
attribute errorcodes { text } ? ,
|
2016-02-16 09:53:44 +00:00
|
|
|
attribute renderpass { text } ? ,
|
|
|
|
attribute cmdbufferlevel { text } ? ,
|
|
|
|
Comment ? ,
|
|
|
|
element proto {
|
|
|
|
mixed {
|
|
|
|
element type { TypeName } ? ,
|
|
|
|
element name { text }
|
|
|
|
}
|
|
|
|
} ,
|
|
|
|
element param {
|
|
|
|
attribute len { text } ? ,
|
|
|
|
attribute externsync { text } ? ,
|
|
|
|
attribute optional { text } ? ,
|
|
|
|
attribute noautovalidity { text } ? ,
|
|
|
|
mixed {
|
|
|
|
element type { TypeName } ? ,
|
|
|
|
element name { text }
|
|
|
|
}
|
|
|
|
} * ,
|
|
|
|
(
|
|
|
|
element alias {
|
|
|
|
Name
|
|
|
|
} ? &
|
|
|
|
element description {
|
|
|
|
text
|
|
|
|
} ? &
|
|
|
|
element implicitexternsyncparams {
|
|
|
|
element param { text } *
|
2016-10-25 05:22:26 +00:00
|
|
|
} ?
|
2016-02-16 09:53:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
# Each <feature> defines the interface of an API version (e.g. OpenGL 1.2)
|
|
|
|
# api - API tag (e.g. 'gl', 'gles2', etc. - used internally, not
|
Change log for April 29, 2016 Vulkan 1.0.12 spec update:
* Bump API patch number and header version number to 12 for this
update.
Github Issues:
* Change valid usage statements intended to be "sub-points" to
be actual sub-points (public issue 66).
* Replace double negation in description of
slink:VkRenderPassBeginInfo::pname:pClearValues (based on public
merge 142).
* Cleanup minor typos in spec, ref pages and XML, including those
proposed in public pull requests 144, 150, 151, 167, 168, 181, and
186.
* Use *strict subset* in describing the partial order of memory
property types for slink:VkMemoryType, and update the style guide
accordingly (public issue 190).
* Fix various "a image" -> "an image" typos (public issue 191).
* Note in the <<fundamentals-validusage,Valid Usage>> and
<<extensions-interactions,Extension Interactions>> sections that
structures defined by extensions which may be passed in structure
chains using the ptext:pNext member must: include initial
ptext:sType and ptext:pNext members (public issue 192).
Internal Issues:
* Remove duplicate language from the description of the pname:fence
parameter to flink:vkQueueSubmit and improve validity language
(internal issue 91).
* Added documentation for "optional" attribute to XML readme.tex/pdf
(internal issue 149).
* Clarify the host-side data validity rules and behavior of
flink:vkFlushMappedMemoryRanges and
flink:vkInvalidateMappedMemoryRanges (internal issue 266).
Other Commits:
* Added clarification to flink:vkCmdFillBuffer regarding the use of
ename:VK_WHOLE_SIZE.
* Fixed and documented implementation of "validextensionstructs"
attribute. in XML processing scripts and readme.tex/pdf.
* Add missing validity statements to flink:vkResetEvent and
flink:vkCmdResetEvent.
* Fix validity for the
ename:VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT flag.
Correct all the draw/dispatch commands to mention optimally tiled
images as well as linear tiled images, and say image VIEWS instead
of images. Add validity statement to flink:vkCmdBlitImage
* Replace the {apiname} macro with hardcoded "Vulkan", now that we've
committed to that name.
* Add the VK_AMD_rasterization_order extension to vk.xml.
2016-04-29 12:53:46 +00:00
|
|
|
# necessarily an actual API name
|
2016-02-16 09:53:44 +00:00
|
|
|
# name - version name (C preprocessor name, e.g. GL_VERSION_4_2)
|
|
|
|
# number - version number, e.g. 4.2
|
|
|
|
# protect - additional #ifdef symbol to place around the feature
|
|
|
|
# <require> / <remove> contains features to require or remove in
|
|
|
|
# this version
|
|
|
|
# profile - only require/remove when generated profile matches
|
|
|
|
# comment - unused
|
|
|
|
Feature = element feature {
|
|
|
|
attribute api { text } ,
|
|
|
|
Name ,
|
|
|
|
attribute number { xsd:float } ,
|
|
|
|
attribute protect { text } ?,
|
|
|
|
Comment ? ,
|
|
|
|
(
|
|
|
|
element require {
|
|
|
|
ProfileName ? ,
|
|
|
|
Comment ? ,
|
2016-10-25 05:22:26 +00:00
|
|
|
InterfaceElement *
|
2016-02-16 09:53:44 +00:00
|
|
|
} |
|
|
|
|
element remove {
|
|
|
|
ProfileName ? ,
|
|
|
|
Comment ? ,
|
2016-10-25 05:22:26 +00:00
|
|
|
InterfaceElement *
|
2016-02-16 09:53:44 +00:00
|
|
|
}
|
|
|
|
) *
|
|
|
|
}
|
|
|
|
Extensions = element extensions {
|
|
|
|
Extension *
|
|
|
|
}
|
|
|
|
|
|
|
|
# Defines the interface of an API <extension>. Like a <feature>
|
|
|
|
# tag, but with slightly different attributes:
|
|
|
|
# api - regexp pattern matching one or more API tags, indicating
|
|
|
|
# which APIs the extension is known to work with. The only
|
|
|
|
# syntax supported is <name>{|<name>}* and each name must
|
|
|
|
# exactly match an API being generated (implicit ^$ surrounding).
|
|
|
|
# name - extension name string
|
|
|
|
# number - extension number (positive integer, should be unique)
|
|
|
|
# protect - C preprocessor symbol to conditionally define the interface
|
|
|
|
# author - name of the author (usually a company or project name)
|
|
|
|
# contact - contact responsible for the tag (name and contact information)
|
2016-08-28 10:47:19 +00:00
|
|
|
# type - 'device' or 'instance', if present
|
|
|
|
# requires - commas-separated list of extension names required by this
|
|
|
|
# extension
|
|
|
|
# supported - profile name(s) supporting this extension, e.g. 'vulkan'
|
|
|
|
# or 'disabled' to never generate output.
|
Change log for February 25, 2015 Vulkan 1.0.4 spec update:
* Bump API patch number from 3 to 4 for the first public update to the
spec. Add patch number to the spec title (this will be done
automatically from XML, later).
* Fixes for numerous editorial issues. Regularize descriptions of
variable-length array queries. Properly tag enumerants so they come
out in the right font (many were mislabeled in usage tags in vk.xml,
or not tagged). Spelling and markup corrections (public issue 4).
* Fix typos and clearly separate description of different types of
memory areas (public issue 5).
* Use standards-compliant preprocessor guard symbols on headers
(public issue 7).
* Note that Github users can't currently set labels on issues, and
recommend a fallback approach (public issue 15).
* Use latexmath prefix on len= attributes (public issue 29).
* Make flink:vkCmdUpdateBuffer pname:dataSize limit consistent (public
issue 65).
* Add VK_KHR_mirror_clamp_to_edge extension to core API branch, as an
optional feature not introducing new commands or enums (internal
issue 104).
* Cleanup invariance language inherited from the GL specification to
not refer to nonexistent (GL-specific) state (internal issue 111).
* Modify the flink:vkCmdDrawIndexed pname:vertexOffset definition to
not be the "base offset within the index buffer" but rather the
"value added to the vertex index before indexing into the vertex
buffer" (internal issue 118).
* Fix drawing chapter in the "Programmable Primitive Shading" section
where it described categories of drawing commands. It referenced
flink:vkCmdDrawIndexed twice. Replace the second reference with
flink:vkCmdDrawIndexedIndirect (internal issue 119).
* Typo fixed in <<sparsememory-examples-advanced,Advanced Sparse
Resources>> sparse memory example (internal issue 122).
* Add flink:VkDisplayPlaneAlphaFlagsKHR to <require> section of
VK_KHR_display extension (internal issue 125)
* Add missing optional="false,true" to
flink:vkGetImageSparseMemoryRequirements
pname:pSparseMemoryRequirementCount parameter (internal issue 132)
* Rename ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT to
ename:VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT
(internal issue 133)
* Fix a handful of broken cross-references in the
<<samplers,Samplers>> chapter (internal issue 134).
* Fix "Input Attachement" GLSL example to use correct syntax (internal
issue 135).
* Update XML schema and documentation to accomodate recently added
attributes for validity. Add some introductory material describing
design choices and pointing to the public repository to file issues.
* Put include of validity in the core spec extensions chapter on its
own line, so that asciidoc is happy.
* Fix vertexOffset language to specify that it's the value added to
the vertex index before indexing into the vertex buffer, not the
base offset within the index buffer.
* Fix error in the description of flink:vkCmdNextSubpass.
2016-02-25 06:02:34 +00:00
|
|
|
# In addition, <require> / <remove> tags also support an api attribute:
|
2016-02-16 09:53:44 +00:00
|
|
|
# api - only require/remove these features for the matching API.
|
|
|
|
# Not a regular expression.
|
|
|
|
Extension = element extension {
|
|
|
|
Name ,
|
|
|
|
attribute number { Integer } ?,
|
|
|
|
attribute protect { text } ?,
|
|
|
|
attribute author { text } ? ,
|
|
|
|
attribute contact { text } ? ,
|
2016-08-28 10:47:19 +00:00
|
|
|
attribute type { text } ?,
|
|
|
|
attribute requires { text } ?,
|
|
|
|
attribute supported { StringGroup } ? ,
|
2016-02-16 09:53:44 +00:00
|
|
|
Comment ? ,
|
|
|
|
(
|
|
|
|
element require {
|
|
|
|
attribute api { text } ? ,
|
|
|
|
ProfileName ? ,
|
|
|
|
Comment ? ,
|
2016-10-25 05:22:26 +00:00
|
|
|
InterfaceElement *
|
2016-02-16 09:53:44 +00:00
|
|
|
} |
|
|
|
|
element remove {
|
|
|
|
attribute api { text } ? ,
|
|
|
|
ProfileName ? ,
|
|
|
|
Comment ? ,
|
2016-10-25 05:22:26 +00:00
|
|
|
InterfaceElement *
|
2016-02-16 09:53:44 +00:00
|
|
|
}
|
|
|
|
) *
|
|
|
|
}
|
|
|
|
|
|
|
|
# Contents of a <require> / <remove> tag, defining a group
|
|
|
|
# of features to require or remove.
|
|
|
|
# <type> / <enum> / <command> all have attributes
|
|
|
|
# name - feature name which must match
|
|
|
|
InterfaceElement =
|
|
|
|
element type {
|
|
|
|
Name ,
|
|
|
|
Comment ?
|
|
|
|
} |
|
|
|
|
Enum |
|
|
|
|
element command {
|
|
|
|
Name ,
|
|
|
|
Comment ?
|
|
|
|
}
|
|
|
|
|
|
|
|
# Integers are allowed to be either decimal or C-hex (0x[0-9A-F]+), but
|
|
|
|
# XML Schema types don't seem to support hex notation, so we use this
|
|
|
|
# as a placeholder.
|
|
|
|
Integer = text
|
|
|
|
|
|
|
|
# EnumName is an compile-time constant name
|
|
|
|
EnumName = text
|
|
|
|
|
|
|
|
# ExtensionName is the name string of an API extension
|
|
|
|
ExtensionName = text
|
|
|
|
|
|
|
|
# TypeName is an argument/return value C type name
|
|
|
|
TypeName = text
|
|
|
|
|
|
|
|
# TypeSuffix is a C numeric type suffix, e.g. 'u' or 'ull'
|
|
|
|
TypeSuffix = text
|
|
|
|
|
|
|
|
# StringGroup is a regular expression with an implicit
|
|
|
|
# '^(' and ')$' bracketing it.
|
|
|
|
StringGroup = text
|
|
|
|
|
|
|
|
# Repeatedly used attributes
|
|
|
|
ProfileName = attribute profile { text }
|
|
|
|
Vendor = attribute vendor { text }
|
|
|
|
Comment = attribute comment { text }
|
|
|
|
Name = attribute name { text }
|