mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-12 15:04:10 +00:00
5436521608
* Bump API patch number and header version number to 64 for this update. Github Issues: * Add chapter name to the PDF page footer (public pull request 458). * Fix several mistaken references to the nonexistent etext:VK_DEVICE_LOST status to etext:VK_ERROR_DEVICE_LOST (public pull request 502). * Fix description of the tlink:PFN_vkDebugReportCallbackEXT debug report callback function pointer to match the validation layer behavior (public issue 534). * Document experimental KHX extensions and alternate vendor author IDs also ending in X in more detail in the <<extensions, Layers & Extensions>> appendix, the extensions section of the style guide, and the registry schema description document (public issues 536, 580). * Fix references to ptext:pDepthStencil to properly refer to pname:pDepthStencilState or pname:pRasterizationState as appropriate in the slink:VkGraphicsPipelineCreateInfo description (public issue 542). * Fix wrong parameter name in slink:VkPipelineMultisampleStateCreateInfo valid usage (public pull request 571). Internal Issues: * Update the style guide to describe how to write LaTeX math expressions in table cells (internal issue 908). * Define how framebuffer-local dependencies work between subpasses with the same or different numbers of samples, in the slink:VkSubpassDescription and <<synchronization-framebuffer-regions, Framebuffer Region Dependencies>> sections. This clarifies which samples in an input attachment you are allowed to access after a framebuffer-local dependency (internal issue 915). * Specify which storage classes can have an initializer in the <<spirvenv-module-validation, Validation Rules within a Module>> section (internal issue 1023). * Use "LOD" consistently for "level-of-detail", to eliminate spelling inconsistencies. The term is already standardized in the Glossary (internal issue 1027). Other Issues: * Fix false positives in Makefile dependencies when rules fail, by deleting partially-made targets. New Extensions: * `VK_AMD_shader_info`
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# This Makefile should be used to regenerate alternate forms of
|
|
# documents when the source changes. Note that pipeline.* is
|
|
# treated specially since its original source format is .pptx
|
|
#
|
|
# Targets:
|
|
# all - regenerate all images from source formats
|
|
# clean - remove all generated images
|
|
# individual files in $(TARGETS) below
|
|
|
|
# Default rules go from Inkscape SVG -> PDF.
|
|
# Some bashing is required for vulkanpipeline.*, which originally
|
|
# comes from PowerPoint -> export to PDF -> convert to SVG. Converting
|
|
# the other way using inkscape just does not work - horrible drop
|
|
# shadows everywhere.
|
|
|
|
# If a recipe fails, delete its target file. Without this cleanup, the leftover
|
|
# file from the failed recipe can falsely satisfy dependencies on subsequent
|
|
# runs of `make`.
|
|
.DELETE_ON_ERROR:
|
|
|
|
#.SUFFIXES: .pdf .svg
|
|
|
|
#.svg.pdf: ; $(INKSCAPE) -f $< -A $@
|
|
|
|
# Tool to convert image formats
|
|
INKSCAPE ?= inkscape
|
|
|
|
# PDFs to regenerate from SVGs - everything except pipeline.pdf
|
|
SVGEXCLUDES = pipeline.svg tstripadj.svg vulkantexture0.svg
|
|
SVGSRC = $(filter-out $(SVGEXCLUDES),$(wildcard [A-Za-z]*.svg))
|
|
PDFDST = $(SVGSRC:%.svg=%.pdf) tstripadj.pdf
|
|
SVGDST = pipeline.svg tstripadj.svg
|
|
|
|
all: $(PDFDST) $(SVGDST)
|
|
|
|
$(PDFDST): %.pdf: %.svg
|
|
$(INKSCAPE) -f $< -A $@
|
|
|
|
# This came from PowerPoint originally (I think)
|
|
pipeline.svg: pipeline.pdf
|
|
$(INKSCAPE) -f $< -l $@
|
|
|
|
# This doesn't render properly in Firefox/IE 11 due to Inkscape markup.
|
|
tstripadj.svg: Source/tstripadj.svg
|
|
$(INKSCAPE) -f $< -l $@
|
|
|
|
clean:
|
|
-rm -f $(PDFDST) $(SVGDST)
|