Skip to content

Commit 0e89587

Browse files
Updated Doxyfile for Doxygen 1.9.6
Regenerated documentation. Fixes #335
1 parent ff37e92 commit 0e89587

86 files changed

Lines changed: 1192 additions & 1114 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doxyfile

Lines changed: 91 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.9.4
1+
# Doxyfile 1.9.6
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -19,7 +19,8 @@
1919
# configuration file:
2020
# doxygen -x [configFile]
2121
# Use doxygen to compare the used configuration file with the template
22-
# configuration file without replacing the environment variables:
22+
# configuration file without replacing the environment variables or CMake type
23+
# replacement variables:
2324
# doxygen -x_noenv [configFile]
2425

2526
#---------------------------------------------------------------------------
@@ -85,7 +86,7 @@ CREATE_SUBDIRS = NO
8586
# level increment doubles the number of directories, resulting in 4096
8687
# directories at level 8 which is the default and also the maximum value. The
8788
# sub-directories are organized in 2 levels, the first level always has a fixed
88-
# numer of 16 directories.
89+
# number of 16 directories.
8990
# Minimum value: 0, maximum value: 8, default value: 8.
9091
# This tag requires that the tag CREATE_SUBDIRS is set to YES.
9192

@@ -567,7 +568,8 @@ HIDE_UNDOC_MEMBERS = NO
567568
# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
568569
# undocumented classes that are normally visible in the class hierarchy. If set
569570
# to NO, these classes will be included in the various overviews. This option
570-
# has no effect if EXTRACT_ALL is enabled.
571+
# will also hide undocumented C++ concepts if enabled. This option has no effect
572+
# if EXTRACT_ALL is enabled.
571573
# The default value is: NO.
572574

573575
HIDE_UNDOC_CLASSES = NO
@@ -605,7 +607,8 @@ INTERNAL_DOCS = NO
605607
# Windows (including Cygwin) and MacOS, users should typically set this option
606608
# to NO, whereas on Linux or other Unix flavors it should typically be set to
607609
# YES.
608-
# The default value is: system dependent.
610+
# Possible values are: SYSTEM, NO and YES.
611+
# The default value is: SYSTEM.
609612

610613
CASE_SENSE_NAMES = NO
611614

@@ -857,6 +860,14 @@ WARN_IF_INCOMPLETE_DOC = YES
857860

858861
WARN_NO_PARAMDOC = NO
859862

863+
# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about
864+
# undocumented enumeration values. If set to NO, doxygen will accept
865+
# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag
866+
# will automatically be disabled.
867+
# The default value is: NO.
868+
869+
WARN_IF_UNDOC_ENUM_VAL = NO
870+
860871
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
861872
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
862873
# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
@@ -913,10 +924,21 @@ INPUT = "@CMAKE_SOURCE_DIR@/include/vk_mem_alloc.h"
913924
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
914925
# documentation (see:
915926
# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
927+
# See also: INPUT_FILE_ENCODING
916928
# The default value is: UTF-8.
917929

918930
INPUT_ENCODING = UTF-8
919931

932+
# This tag can be used to specify the character encoding of the source files
933+
# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify
934+
# character encoding on a per file pattern basis. Doxygen will compare the file
935+
# name with each pattern and apply the encoding instead of the default
936+
# INPUT_ENCODING) if there is a match. The character encodings are a list of the
937+
# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding
938+
# "INPUT_ENCODING" for further information on supported encodings.
939+
940+
INPUT_FILE_ENCODING =
941+
920942
# If the value of the INPUT tag contains directories, you can use the
921943
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
922944
# *.h) to filter out the source-files in the directories.
@@ -1063,6 +1085,11 @@ IMAGE_PATH =
10631085
# code is scanned, but not when the output code is generated. If lines are added
10641086
# or removed, the anchors will not be placed correctly.
10651087
#
1088+
# Note that doxygen will use the data processed and written to standard output
1089+
# for further processing, therefore nothing else, like debug statements or used
1090+
# commands (so in case of a Windows batch file always use @echo OFF), should be
1091+
# written to standard output.
1092+
#
10661093
# Note that for custom extensions or not directly supported extensions you also
10671094
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
10681095
# properly processed by doxygen.
@@ -1104,6 +1131,15 @@ FILTER_SOURCE_PATTERNS =
11041131

11051132
USE_MDFILE_AS_MAINPAGE =
11061133

1134+
# The Fortran standard specifies that for fixed formatted Fortran code all
1135+
# characters from position 72 are to be considered as comment. A common
1136+
# extension is to allow longer lines before the automatic comment starts. The
1137+
# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can
1138+
# be processed before the automatic comment starts.
1139+
# Minimum value: 7, maximum value: 10000, default value: 72.
1140+
1141+
FORTRAN_COMMENT_AFTER = 72
1142+
11071143
#---------------------------------------------------------------------------
11081144
# Configuration options related to source browsing
11091145
#---------------------------------------------------------------------------
@@ -1241,10 +1277,11 @@ CLANG_DATABASE_PATH =
12411277

12421278
ALPHABETICAL_INDEX = YES
12431279

1244-
# In case all classes in a project start with a common prefix, all classes will
1245-
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
1246-
# can be used to specify a prefix (or a list of prefixes) that should be ignored
1247-
# while generating the index headers.
1280+
# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes)
1281+
# that should be ignored while generating the index headers. The IGNORE_PREFIX
1282+
# tag works for classes, function and member names. The entity will be placed in
1283+
# the alphabetical list under the first letter of the entity name that remains
1284+
# after removing the prefix.
12481285
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
12491286

12501287
IGNORE_PREFIX =
@@ -1323,7 +1360,12 @@ HTML_STYLESHEET =
13231360
# Doxygen will copy the style sheet files to the output directory.
13241361
# Note: The order of the extra style sheet files is of importance (e.g. the last
13251362
# style sheet in the list overrules the setting of the previous ones in the
1326-
# list). For an example see the documentation.
1363+
# list).
1364+
# Note: Since the styling of scrollbars can currently not be overruled in
1365+
# Webkit/Chromium, the styling will be left out of the default doxygen.css if
1366+
# one or more extra stylesheets have been specified. So if scrollbar
1367+
# customization is desired it has to be added explicitly. For an example see the
1368+
# documentation.
13271369
# This tag requires that the tag GENERATE_HTML is set to YES.
13281370

13291371
HTML_EXTRA_STYLESHEET =
@@ -1338,6 +1380,19 @@ HTML_EXTRA_STYLESHEET =
13381380

13391381
HTML_EXTRA_FILES =
13401382

1383+
# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output
1384+
# should be rendered with a dark or light theme.
1385+
# Possible values are: LIGHT always generate light mode output, DARK always
1386+
# generate dark mode output, AUTO_LIGHT automatically set the mode according to
1387+
# the user preference, use light mode if no preference is set (the default),
1388+
# AUTO_DARK automatically set the mode according to the user preference, use
1389+
# dark mode if no preference is set and TOGGLE allow to user to switch between
1390+
# light and dark mode via a button.
1391+
# The default value is: AUTO_LIGHT.
1392+
# This tag requires that the tag GENERATE_HTML is set to YES.
1393+
1394+
HTML_COLORSTYLE = AUTO_LIGHT
1395+
13411396
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
13421397
# will adjust the colors in the style sheet and background images according to
13431398
# this color. Hue is specified as an angle on a color-wheel, see
@@ -1701,17 +1756,6 @@ HTML_FORMULA_FORMAT = png
17011756

17021757
FORMULA_FONTSIZE = 10
17031758

1704-
# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
1705-
# generated for formulas are transparent PNGs. Transparent PNGs are not
1706-
# supported properly for IE 6.0, but are supported on all modern browsers.
1707-
#
1708-
# Note that when changing this option you need to delete any form_*.png files in
1709-
# the HTML output directory before the changes have effect.
1710-
# The default value is: YES.
1711-
# This tag requires that the tag GENERATE_HTML is set to YES.
1712-
1713-
FORMULA_TRANSPARENT = YES
1714-
17151759
# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
17161760
# to create new LaTeX commands to be used in formulas as building blocks. See
17171761
# the section "Including formulas" for details.
@@ -2436,26 +2480,38 @@ HAVE_DOT = NO
24362480

24372481
DOT_NUM_THREADS = 0
24382482

2439-
# When you want a differently looking font in the dot files that doxygen
2440-
# generates you can specify the font name using DOT_FONTNAME. You need to make
2441-
# sure dot is able to find the font, which can be done by putting it in a
2442-
# standard location or by setting the DOTFONTPATH environment variable or by
2443-
# setting DOT_FONTPATH to the directory containing the font.
2444-
# The default value is: Helvetica.
2483+
# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of
2484+
# subgraphs. When you want a differently looking font in the dot files that
2485+
# doxygen generates you can specify fontname, fontcolor and fontsize attributes.
2486+
# For details please see <a href=https://graphviz.org/doc/info/attrs.html>Node,
2487+
# Edge and Graph Attributes specification</a> You need to make sure dot is able
2488+
# to find the font, which can be done by putting it in a standard location or by
2489+
# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
2490+
# directory containing the font. Default graphviz fontsize is 14.
2491+
# The default value is: fontname=Helvetica,fontsize=10.
2492+
# This tag requires that the tag HAVE_DOT is set to YES.
2493+
2494+
DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10"
2495+
2496+
# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can
2497+
# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. <a
2498+
# href=https://graphviz.org/doc/info/arrows.html>Complete documentation about
2499+
# arrows shapes.</a>
2500+
# The default value is: labelfontname=Helvetica,labelfontsize=10.
24452501
# This tag requires that the tag HAVE_DOT is set to YES.
24462502

2447-
DOT_FONTNAME = Helvetica
2503+
DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10"
24482504

2449-
# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2450-
# dot graphs.
2451-
# Minimum value: 4, maximum value: 24, default value: 10.
2505+
# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes
2506+
# around nodes set 'shape=plain' or 'shape=plaintext' <a
2507+
# href=https://www.graphviz.org/doc/info/shapes.html>Shapes specification</a>
2508+
# The default value is: shape=box,height=0.2,width=0.4.
24522509
# This tag requires that the tag HAVE_DOT is set to YES.
24532510

2454-
DOT_FONTSIZE = 10
2511+
DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4"
24552512

2456-
# By default doxygen will tell dot to use the default font as specified with
2457-
# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
2458-
# the path where dot can find it using this tag.
2513+
# You can set the path where dot can find font specified with fontname in
2514+
# DOT_COMMON_ATTR and others dot attributes.
24592515
# This tag requires that the tag HAVE_DOT is set to YES.
24602516

24612517
DOT_FONTPATH =
@@ -2698,18 +2754,6 @@ DOT_GRAPH_MAX_NODES = 50
26982754

26992755
MAX_DOT_GRAPH_DEPTH = 0
27002756

2701-
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2702-
# background. This is disabled by default, because dot on Windows does not seem
2703-
# to support this out of the box.
2704-
#
2705-
# Warning: Depending on the platform used, enabling this option may lead to
2706-
# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2707-
# read).
2708-
# The default value is: NO.
2709-
# This tag requires that the tag HAVE_DOT is set to YES.
2710-
2711-
DOT_TRANSPARENT = NO
2712-
27132757
# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
27142758
# files in one run (i.e. multiple -o and -T options on the command line). This
27152759
# makes dot run faster, but since only newer versions of dot (>1.8.10) support

bin/Shader.frag.spv

0 Bytes
Binary file not shown.

bin/Shader.vert.spv

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)