blob: d5e052114f8db478ee958d4f9846c4be1978b9b9 [file] [log] [blame]
Erik Faye-Lund00cd1342019-05-02 23:21:36 +02001#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4import sphinx_rtd_theme
5
6#
7# The Mesa 3D Graphics Library documentation build configuration file, created by
8# sphinx-quickstart on Wed Mar 29 14:08:51 2017.
9#
10# This file is execfile()d with the current directory set to its
11# containing dir.
12#
13# Note that not all possible configuration values are present in this
14# autogenerated file.
15#
16# All configuration values have a default; values that are commented out
17# serve to show the default.
18
19# If extensions (or modules to document with autodoc) are in another directory,
20# add these directories to sys.path here. If the directory is relative to the
21# documentation root, use os.path.abspath to make it absolute, like shown here.
22#
23# import os
24# import sys
25# sys.path.insert(0, os.path.abspath('.'))
26
27
28# -- General configuration ------------------------------------------------
29
30# If your documentation needs a minimal Sphinx version, state it here.
31#
32# needs_sphinx = '1.0'
33
34# Add any Sphinx extension module names here, as strings. They can be
35# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
36# ones.
37extensions = []
38
39# Add any paths that contain templates here, relative to this directory.
40templates_path = ['_templates']
41
42# The suffix(es) of source filenames.
43# You can specify multiple suffix as a list of string:
44#
45# source_suffix = ['.rst', '.md']
46source_suffix = '.rst'
47
48# The master toctree document.
49master_doc = 'index'
50
51# General information about the project.
52project = 'The Mesa 3D Graphics Library'
53copyright = '1995-2018, Brian Paul'
54author = 'Brian Paul'
55html_show_copyright = False
56
57html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
58
59# The version info for the project you're documenting, acts as replacement for
60# |version| and |release|, also used in various other places throughout the
61# built documents.
62#
63# The short X.Y version.
64version = 'latest'
65# The full version, including alpha/beta/rc tags.
66release = 'latest'
67
68# The language for content autogenerated by Sphinx. Refer to documentation
69# for a list of supported languages.
70#
71# This is also used if you do content translation via gettext catalogs.
72# Usually you set "language" from the command line for these cases.
73language = None
74
75# List of patterns, relative to source directory, that match files and
76# directories to ignore when looking for source files.
77# This patterns also effect to html_static_path and html_extra_path
78exclude_patterns = [ "contents.rst" ]
79
80# The name of the Pygments (syntax highlighting) style to use.
81pygments_style = 'sphinx'
82
83# If true, `todo` and `todoList` produce output, else they produce nothing.
84todo_include_todos = False
85
Erik Faye-Lunddcaab1b2019-06-04 15:15:39 +020086# Disable highlighting unless a language is specified, otherwise we'll get
87# python keywords highlit in literal blocks.
88highlight_language = "none"
89
Erik Faye-Lund00cd1342019-05-02 23:21:36 +020090
91# -- Options for HTML output ----------------------------------------------
92
93# The theme to use for HTML and HTML Help pages. See the documentation for
94# a list of builtin themes.
95#
96html_theme = 'sphinx_rtd_theme'
97
Laura Ekstrand8342fe82018-06-11 15:42:39 -070098html_favicon = "favicon.ico"
99
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200100# Theme options are theme-specific and customize the look and feel of a theme
101# further. For a list of options available for each theme, see the
102# documentation.
103#
Laura Ekstrand21adb672018-06-06 14:43:35 -0700104html_theme_options = {
105 'display_version': False,
106}
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200107
Erik Faye-Lund17aefa72019-06-10 20:15:08 +0200108html_copy_source = False
109
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200110# Add any paths that contain custom static files (such as style sheets) here,
111# relative to this directory. They are copied after the builtin static files,
112# so a file named "default.css" will overwrite the builtin "default.css".
113html_static_path = []
114
Erik Faye-Lunddd3add12020-04-18 11:44:57 +0200115html_extra_path = [
116 'features.txt',
117 'libGL.txt',
118 'README.UVD',
119 'README.VCE',
120 'README.WIN32',
121 'VERSIONS'
122]
123
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200124
125# -- Options for HTMLHelp output ------------------------------------------
126
127# Output file base name for HTML help builder.
128htmlhelp_basename = 'TheMesa3DGraphicsLibrarydoc'
129
130
131# -- Options for LaTeX output ---------------------------------------------
132
133latex_elements = {
134 # The paper size ('letterpaper' or 'a4paper').
135 #
136 # 'papersize': 'letterpaper',
137
138 # The font size ('10pt', '11pt' or '12pt').
139 #
140 # 'pointsize': '10pt',
141
142 # Additional stuff for the LaTeX preamble.
143 #
144 # 'preamble': '',
145
146 # Latex figure (float) alignment
147 #
148 # 'figure_align': 'htbp',
149}
150
151# Grouping the document tree into LaTeX files. List of tuples
152# (source start file, target name, title,
153# author, documentclass [howto, manual, or own class]).
154latex_documents = [
155 (master_doc, 'TheMesa3DGraphicsLibrary.tex', 'The Mesa 3D Graphics Library Documentation',
156 'Brian Paul', 'manual'),
157]
158
159
160# -- Options for manual page output ---------------------------------------
161
162# One entry per manual page. List of tuples
163# (source start file, name, description, authors, manual section).
164man_pages = [
165 (master_doc, 'themesa3dgraphicslibrary', 'The Mesa 3D Graphics Library Documentation',
166 [author], 1)
167]
168
169
170# -- Options for Texinfo output -------------------------------------------
171
172# Grouping the document tree into Texinfo files. List of tuples
173# (source start file, target name, title, author,
174# dir menu entry, description, category)
175texinfo_documents = [
176 (master_doc, 'TheMesa3DGraphicsLibrary', 'The Mesa 3D Graphics Library Documentation',
177 author, 'TheMesa3DGraphicsLibrary', 'One line description of project.',
178 'Miscellaneous'),
179]