mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-18 09:16:51 +00:00
* Bump API patch number and header version number to 67 for this update. * Update copyright dates to 2018 Github Issues: * Fix texture lookup functions in `GL_KHR_vulkan_glsl` specification (public pull request 363). * Clarify the state waited semaphores are left in when a call to flink:vkQueuePresentKHR fails (public issue 572). * Cleanup descriptions of slink:VkObjectTablePushConstantEntryNVX and slink:VkObjectTableDescriptorSetEntryNVX (public issue 583) * Remove redundant flink:vkCmdSetDiscardRectangleEXT valid usage statements (public pull 586). * Make dynamic state array length valid usage statements implicit for flink:vkCmdSetViewportWScalingNV, flink:vkCmdSetDiscardRectangleEXT, and flink:vkCmdSetViewport (public pull 589). * Clarify meaning of window extent (0,0) in slink:VkSwapchainKHR for the Windows and X11 platforms, in their respective extensions (public issue 590). * Allow flink:vkGetPastPresentationTimingGOOGLE to return ename:VK_INCOMPLETE (public issue 604). * Add synchronization valid usage statements to flink:vkAcquireNextImage (public pull 611). * Fix some broken external links and internal xrefs (public pull 613). * Clean up slink:VkViewport valid usage statements in the presence or absence of relevant extensions (public pull 623). * Remove ename:VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL_KHR token from VK_KHR_maintenance2 from the non-extension VU path for slink:VkGraphicsPipelineCreateInfo (public issue 628). * Miscellaneous minor markup fixes - extension name strings (public pull 631), Notes (pull 633), queue names emitted by generator scripts (pull 634), block formatting in slink:VkDescriptorUpdateTemplateEntryKHR (pull 635), ename:VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG (pull 641), quotes and apostrophes (pull 643), * Miscellaneous minor grammar fixes (public pull 644). * Fix markup macros so usage like ptext:*Src* works (public pull 647). Internal Issues: * Clarify in the `VK_KHR_surface` and `VK_KHR_swapchain` extensions that parameter combinations which aren't supported for normal images are also unsupported for presentable images, even if the parameter values are individually supported as reported by the surface capability queries (internal issue 1029). * Fixed XML typo in the valid value field of the pname:sType member of slink:VkPhysicalDeviceExternalMemoryHostPropertiesEXT (internal issue 1100). Other Issues: * Add memory semantics validity rules to the <<spirvenv-module-validation, Validation Rules within a Module>> section of the SPIR-V environment appendix, and specify that sequentiality consistency is not supported. This forbids certain cases like "`Load+Release`" that we don't expect to ever be meaningful. * Document mapping of OpenGL Shading Language barriers to SPIR-V scope and semantics in the `GL_KHR_vulkan_glsl` specification. New Extensions: * `VK_EXT_conservative_rasterization`
213 lines
7.2 KiB
Python
Executable File
213 lines
7.2 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# Copyright (c) 2016-2018 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.
|
|
|
|
# fixupRef.py - replace old // refBegin .. // refEnd syntax with new
|
|
# open block syntax
|
|
#
|
|
# Usage: fixupRef.py [-outdir path] [-overwrite] files
|
|
|
|
from reflib import *
|
|
from vkapi import *
|
|
import argparse, copy, io, os, pdb, re, string, sys
|
|
|
|
# Return 'None' for None, the string otherwise
|
|
def noneStr(str):
|
|
if str == None:
|
|
return '(None)'
|
|
else:
|
|
return str
|
|
|
|
# Escape single quotes in a string for asciidoc
|
|
def escapeQuote(str):
|
|
return str.replace("'", "\'")
|
|
|
|
# Start a refpage open block
|
|
def openBlock(pi, fp):
|
|
if pi.refs != '':
|
|
print("[open,refpage='" + pi.name +
|
|
"',desc='" + pi.desc +
|
|
"',type='" + pi.type +
|
|
"',xrefs='" + pi.refs + "']",
|
|
file=fp)
|
|
else:
|
|
print("[open,refpage='" + pi.name +
|
|
"',desc='" + pi.desc +
|
|
"',type='" + pi.type + "']",
|
|
file=fp)
|
|
print('--', file=fp)
|
|
|
|
# End a refpage open block
|
|
def closeBlock(pi, fp):
|
|
print('--', file=fp)
|
|
# Just for finding block ends while debugging
|
|
# print("// end [open,refpage='" + pi.name + "']", file=fp)
|
|
|
|
# Replace old // refBegin .. // refEnd references in an asciidoc
|
|
# file with open blocks, per # ??? .
|
|
# specFile - filename to extract from
|
|
# outDir - output directory to write updated file to, if not overwritten
|
|
# overwrite - True if the file should be overwritten in place
|
|
# skipped - set of filenames containing commands which weren't
|
|
# rewritten with open blocks (e.g. enums). Updated in place.
|
|
def replaceRef(specFile, outDir, overwrite = False, skipped = set()):
|
|
file = loadFile(specFile)
|
|
if file == None:
|
|
return
|
|
|
|
# Save the path to this file for later use in rewriting relative includes
|
|
specDir = os.path.dirname(os.path.abspath(specFile))
|
|
|
|
pageMap = findRefs(file)
|
|
logDiag(specFile + ': found', len(pageMap.keys()), 'potential pages')
|
|
|
|
sys.stderr.flush()
|
|
|
|
# Fix up references in pageMap
|
|
fixupRefs(pageMap, specFile, file)
|
|
|
|
# Map the page info dictionary into a dictionary of actions
|
|
# keyed by line number they're performed on/after:
|
|
# 'action' : 'begin' or 'end'. What to do on a refBegin or refEnd line
|
|
# 'replace': True if this line needs to be replaced
|
|
# 'name' : Name of the ref page being defined
|
|
# 'desc' : One-line description of the ref page being defined
|
|
# 'type' : Type of the ref page being defined, 'structs', 'protos', etc.
|
|
# 'refs' : Space-separated string of crossreferenced pages
|
|
|
|
actions = { }
|
|
|
|
for name in pageMap.keys():
|
|
pi = pageMap[name]
|
|
|
|
# Cleanup parameters for output
|
|
pi.name = noneStr(pi.name)
|
|
pi.desc = escapeQuote(noneStr(pi.desc))
|
|
|
|
if pi.extractPage:
|
|
if (file[pi.begin][0:11] == '// refBegin'):
|
|
# Replace line
|
|
actions[pi.begin] = {
|
|
'action' : 'begin',
|
|
'replace' : True,
|
|
'pageinfo' : pi
|
|
}
|
|
else:
|
|
# Insert line
|
|
actions[pi.begin] = {
|
|
'action' : 'begin',
|
|
'replace' : False,
|
|
'pageinfo' : pi
|
|
}
|
|
|
|
if (file[pi.end][0:9] == '// refEnd'):
|
|
# Replace line
|
|
actions[pi.end] = {
|
|
'action' : 'end',
|
|
'replace' : True,
|
|
'pageinfo' : pi
|
|
}
|
|
else:
|
|
# Insert line
|
|
actions[pi.end] = {
|
|
'action' : 'end',
|
|
'replace' : False,
|
|
'pageinfo' : pi
|
|
}
|
|
else:
|
|
logWarn('Skipping replacement for', pi.name, 'at', specFile,
|
|
'line', pi.begin)
|
|
print('Skipping replacement for', pi.name, 'at', specFile,
|
|
'line', pi.begin)
|
|
printPageInfo(pi, file)
|
|
skipped.add(specFile)
|
|
|
|
if overwrite:
|
|
pageName = specFile
|
|
else:
|
|
pageName = outDir + '/' + os.path.basename(specFile)
|
|
|
|
fp = open(pageName, 'w', encoding='utf-8')
|
|
|
|
line = 0
|
|
for text in file:
|
|
if line in actions.keys():
|
|
action = actions[line]['action']
|
|
replace = actions[line]['replace']
|
|
pi = actions[line]['pageinfo']
|
|
|
|
logDiag('ACTION:', action, 'REPLACE:', replace, 'at line', line)
|
|
logDiag('PageInfo of action:')
|
|
printPageInfo(pi, file)
|
|
|
|
if action == 'begin':
|
|
openBlock(pi, fp)
|
|
if not replace:
|
|
print(text, file=fp, end='')
|
|
elif action == 'end':
|
|
if not replace:
|
|
print(text, file=fp, end='')
|
|
closeBlock(pi, fp)
|
|
else:
|
|
print('ERROR: unrecognized action:', action, 'in',
|
|
specFile, 'at line', line)
|
|
print(text, file=fp, end='')
|
|
else:
|
|
print(text, file=fp, end='')
|
|
line = line + 1
|
|
|
|
fp.close()
|
|
|
|
#for line in sorted(actions.keys()):
|
|
# action = actions[line]
|
|
# print('action at line', line, '\t',
|
|
# action[0], action[1], action[2])
|
|
|
|
if __name__ == '__main__':
|
|
global genDict
|
|
genDict = {}
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('-diag', action='store', dest='diagFile',
|
|
help='Set the diagnostic file')
|
|
parser.add_argument('-warn', action='store', dest='warnFile',
|
|
help='Set the warning file')
|
|
parser.add_argument('-log', action='store', dest='logFile',
|
|
help='Set the log file for both diagnostics and warnings')
|
|
parser.add_argument('-outdir', action='store', dest='outDir',
|
|
default='out',
|
|
help='Set the base directory in which pages are generated')
|
|
parser.add_argument('-overwrite', action='store_true',
|
|
help='Overwrite input filenames instead of writing different output filenames')
|
|
parser.add_argument('files', metavar='filename', nargs='*',
|
|
help='a filename to extract ref pages from')
|
|
parser.add_argument('--version', action='version', version='%(prog)s 1.0')
|
|
|
|
results = parser.parse_args()
|
|
|
|
setLogFile(True, True, results.logFile)
|
|
setLogFile(True, False, results.diagFile)
|
|
setLogFile(False, True, results.warnFile)
|
|
|
|
skipped = set()
|
|
for file in results.files:
|
|
replaceRef(file, results.outDir, results.overwrite, skipped)
|
|
|
|
if len(skipped) > 0:
|
|
print('Files containing skipped feature blocks:')
|
|
for file in sorted(skipped):
|
|
print('\t' + file)
|