Vulkan-Docs/doc/specs/vulkan/config/mathjax-docbook.conf

71 lines
2.3 KiB
Plaintext
Raw Normal View History

Change log for September 16, 2016 Vulkan 1.0.27 spec update: * Bump API patch number and header version number to 27 for this update. Github Issues: * Weaken flink:vkGetPipelineCacheData invariance conditions; previous conditions were stronger than agreed and can't be guaranteed (public issue 280). * Add link to "Vulkan Loader Specification and Architecture Overview" document to Normative References section (public issue 359). Internal Issues: * Be more clear in the <<interfaces-resources-layout-std140, uniform buffer layout>> section that block offsets can be out of order (internal issue 396). * Document that extension authors should add support for their extensions to the validation layers (internal issue 398). * Clarify that the valid range of depth clear values should be limited to the 0..1 range and that copies to depth aspect must also be in this range (internal issue 412). * Specify ``a'' vs. ``an'' use in the style guide (internal issue 432). * Increase the maximum pname:nonCoherentAtomSize value in the <<features-limits-required,Required Limits>> section from 128 to 256 (internal issue 435). * Fix vk_platform.h for compiler errors on some Android platforms (internal issue 441). * Clarify that slink:VkPhysicalDeviceFeatures::pname:pEnabledFeatures == `NULL` disables all features, including the "required" feature pname:robustBufferAccess (internal issue 479). Other Issues: * Expand style guide and make it more self-consistent. * Use ISO 8601 date format everywhere. * Emphasise the correct way of using slink:VkSurfaceCapabilitiesKHR::pname:maxImageCount. * Added +VK_EXT_validation_flags+ extension for validation flag mechanism. * Fix an <<credits,author credit>> to include their current employer.
2016-09-17 04:22:17 +00:00
# Copyright (c) 2015-2016 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.
2016-02-16 09:53:44 +00:00
# testdb.conf - override some Docbook-specific config stuff
# Override docbook45 definition to not encapsulate LaTeX math
# This requires some cleverness in the latexmath macros to include
# the equation source in the alt block for PDF output, and in
# a Docbook block tag otherwise, using the a2x-format variable.
# a2x-format can be one of: chunked, docbook, dvi, epub, htmlhelp, manpage,
# pdf (default), ps, tex, text, xhtml.
[blockdef-pass]
ifeval::["{a2x-format}"=="pdf"]
latexmath-style=template="latexmathblock",subs=()
endif::[]
ifeval::["{a2x-format}"!="pdf"]
latexmath-style=template="latexmathblock"
subs=specialcharacters
endif::[]
[latexmath-inlinemacro]
<inlineequation>
ifeval::["{a2x-format}"=="pdf"]
<alt><?texmath delimiters="user"?><![CDATA[{passtext}]]></alt>
endif::[]
<inlinemediaobject><textobject><phrase>
ifeval::["{a2x-format}"!="pdf"]
{passtext}
endif::[]
</phrase></textobject></inlinemediaobject>
</inlineequation>
[latexmath-blockmacro]
<informalequation>
ifeval::["{a2x-format}"=="pdf"]
<alt><?texmath delimiters="user"?><![CDATA[{passtext}]]></alt>
endif::[]
<inlinemediaobject><textobject><phrase>
ifeval::["{a2x-format}"!="pdf"]
{passtext}
endif::[]
</phrase></textobject></inlinemediaobject>
</informalequation>
[latexmathblock]
{title#}<equation{id? id="{id}"}{role? role="{role}"}{reftext? xreflabel="{reftext}"}><title>{title}</title>
{title%}<informalequation{id? id="{id}"}{role? role="{role}"}{reftext? xreflabel="{reftext}"}>
ifeval::["{a2x-format}"=="pdf"]
<alt><?texmath delimiters="user"?><![CDATA[|]]></alt>
endif::[]
<mediaobject><textobject><phrase>
ifeval::["{a2x-format}"!="pdf"]
|
endif::[]
</phrase></textobject></mediaobject>
{title#}</equation>
{title%}</informalequation>