mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-23 23:41:13 +00:00
cf3bc91c06
Mesa has not had a src/mesa/shader/ folder since Mesa 7.9 removed it in October 2010, as part of a revised GLSL compiler written by Intel. Remove doxygen/shader.doxy and consequential changes made throughout. In addition to removing an unnecessary Doxygen doxyfile, this change also avoids a bug in the consolidated Doxygen output caused by doxygen/shader.doxy inadvertently overwriting doxygen/swrast.tag via its GENERATE_TAGFILE setting. This bug depended upon the specific order each *.tag was built. Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Acked-by: Emil Velikov <emil.velikov@collabora.com>
50 lines
2.0 KiB
Plaintext
50 lines
2.0 KiB
Plaintext
# Doxyfile 0.1
|
|
|
|
@INCLUDE = common.doxy
|
|
|
|
#---------------------------------------------------------------------------
|
|
# General configuration options
|
|
#---------------------------------------------------------------------------
|
|
PROJECT_NAME = "Mesa Main"
|
|
#---------------------------------------------------------------------------
|
|
# configuration options related to the input files
|
|
#---------------------------------------------------------------------------
|
|
INPUT = ../src/mesa/main/
|
|
FILE_PATTERNS = *.c *.h
|
|
RECURSIVE = NO
|
|
EXCLUDE = ../src/glapitemp.h ../src/glapioffsets.h
|
|
EXCLUDE_PATTERNS = subset_*
|
|
EXAMPLE_PATH =
|
|
EXAMPLE_PATTERNS =
|
|
EXAMPLE_RECURSIVE = NO
|
|
IMAGE_PATH =
|
|
INPUT_FILTER =
|
|
FILTER_SOURCE_FILES = NO
|
|
#---------------------------------------------------------------------------
|
|
# configuration options related to the HTML output
|
|
#---------------------------------------------------------------------------
|
|
HTML_OUTPUT = main
|
|
#---------------------------------------------------------------------------
|
|
# Configuration options related to the preprocessor
|
|
#---------------------------------------------------------------------------
|
|
ENABLE_PREPROCESSING = YES
|
|
MACRO_EXPANSION = YES
|
|
EXPAND_ONLY_PREDEF = YES
|
|
SEARCH_INCLUDES = YES
|
|
INCLUDE_PATH = ../include/
|
|
INCLUDE_FILE_PATTERNS =
|
|
PREDEFINED =
|
|
EXPAND_AS_DEFINED =
|
|
SKIP_FUNCTION_MACROS = YES
|
|
#---------------------------------------------------------------------------
|
|
# Configuration::addtions related to external references
|
|
#---------------------------------------------------------------------------
|
|
TAGFILES = tnl_dd.tag=../tnl_dd \
|
|
vbo.tag=../vbo \
|
|
glapi.tag=../glapi \
|
|
math.tag=../math \
|
|
swrast.tag=../swrast \
|
|
swrast_setup.tag=../swrast_setup \
|
|
tnl.tag=../tnl
|
|
GENERATE_TAGFILE = main.tag
|