diff --git a/doxygen/Makefile b/doxygen/Makefile index 4da21fa18fb..055b17386df 100644 --- a/doxygen/Makefile +++ b/doxygen/Makefile @@ -10,6 +10,8 @@ FULL = \ main.doxy \ math.doxy \ array_cache.doxy \ + glapi.doxy \ + shader.doxy \ swrast.doxy \ swrast_setup.doxy \ tnl.doxy \ diff --git a/doxygen/array_cache.doxy b/doxygen/array_cache.doxy index 23296e1da6c..ae0b1fa1391 100644 --- a/doxygen/array_cache.doxy +++ b/doxygen/array_cache.doxy @@ -41,9 +41,10 @@ SKIP_FUNCTION_MACROS = YES # Configuration::addtions related to external references #--------------------------------------------------------------------------- TAGFILES = main.tag=../core \ - tnl.tag=../tnl \ - swrast_setup.tag=../swrast_setup \ - swrast.tag=../swrast \ math.tag=../math \ + shader.tag=../shader \ + swrast.tag=../swrast \ + swrast_setup.tag=../swrast_setup \ + tnl.tag=../tnl \ tnl_dd.tag=../tnl_dd GENERATE_TAGFILE = array_cache.tag diff --git a/doxygen/common.doxy b/doxygen/common.doxy index 977cc588fe7..1b5e5fece60 100644 --- a/doxygen/common.doxy +++ b/doxygen/common.doxy @@ -23,7 +23,7 @@ PROJECT_NAME = Mesa # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 6.1 +PROJECT_NUMBER = 6.2 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/doxygen/core_subset.doxy b/doxygen/core_subset.doxy index ec63a7e6e96..35faf565dc4 100644 --- a/doxygen/core_subset.doxy +++ b/doxygen/core_subset.doxy @@ -3,7 +3,7 @@ #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- -PROJECT_NAME = "Mesa Core" +PROJECT_NAME = "Mesa Main" PROJECT_NUMBER = OUTPUT_DIRECTORY = OUTPUT_LANGUAGE = English diff --git a/doxygen/doxy.bat b/doxygen/doxy.bat index 9c4ecd75334..2d8b567ce3a 100644 --- a/doxygen/doxy.bat +++ b/doxygen/doxy.bat @@ -5,10 +5,15 @@ doxygen swrast.doxy doxygen swrast_setup.doxy doxygen tnl.doxy doxygen core.doxy +doxygen glapi.doxy +doxygen shader.doxy + echo Building again, to resolve tags doxygen tnl_dd.doxy doxygen array_cache.doxy doxygen math.doxy doxygen swrast.doxy doxygen swrast_setup.doxy -doxygen tnl.doxy \ No newline at end of file +doxygen tnl.doxy +doxygen glapi.doxy +doxygen shader.doxy diff --git a/doxygen/glapi.doxy b/doxygen/glapi.doxy new file mode 100644 index 00000000000..eafc2a109ad --- /dev/null +++ b/doxygen/glapi.doxy @@ -0,0 +1,49 @@ +# Doxyfile 0.1 + +@INCLUDE = common.doxy + +#--------------------------------------------------------------------------- +# General configuration options +#--------------------------------------------------------------------------- +PROJECT_NAME = "Mesa GL API dispatcher" +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- +INPUT = ../src/mesa/glapi/ +FILE_PATTERNS = *.c *.h +RECURSIVE = NO +EXCLUDE = +EXCLUDE_PATTERNS = +EXAMPLE_PATH = +EXAMPLE_PATTERNS = +EXAMPLE_RECURSIVE = NO +IMAGE_PATH = +INPUT_FILTER = +FILTER_SOURCE_FILES = NO +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- +HTML_OUTPUT = glapi +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- +ENABLE_PREPROCESSING = YES +MACRO_EXPANSION = NO +EXPAND_ONLY_PREDEF = NO +SEARCH_INCLUDES = YES +INCLUDE_PATH = ../include/ +INCLUDE_FILE_PATTERNS = +PREDEFINED = +EXPAND_AS_DEFINED = +SKIP_FUNCTION_MACROS = YES +#--------------------------------------------------------------------------- +# Configuration::addtions related to external references +#--------------------------------------------------------------------------- +TAGFILES = main.tag=../core \ + math.tag=../math \ + tnl_dd.tag=../tnl_dd \ + swrast.tag=../swrast \ + swrast_setup.tag=../swrast_setup \ + tnl.tag=../tnl \ + array_cache.tag=array_cache +GENERATE_TAGFILE = swrast.tag diff --git a/doxygen/header.html b/doxygen/header.html index 3969315f043..3040ca7e23b 100644 --- a/doxygen/header.html +++ b/doxygen/header.html @@ -2,9 +2,11 @@