diff options
author | Erik Faye-Lund <[email protected]> | 2020-06-30 13:01:04 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-07 10:22:08 +0000 |
commit | 892fdde23f44df78391eb0ff50ef031c8b978384 (patch) | |
tree | 17c7655bfb616d9b21159c8b8043b106eb4e0c28 | |
parent | 64a4ba9e1ceeccbc7adeae368b5bc2553be88610 (diff) |
docs: move gallium specific docs into gallium folder
Reviewed-by: Eric Engestrom <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5706>
-rw-r--r-- | docs/_exts/redirects.py | 5 | ||||
-rw-r--r-- | docs/contents.rst | 2 | ||||
-rw-r--r-- | docs/gallium/drivers/llvmpipe.rst (renamed from docs/llvmpipe.rst) | 0 | ||||
-rw-r--r-- | docs/gallium/index.rst | 1 | ||||
-rw-r--r-- | docs/gallium/postprocess.rst (renamed from docs/postprocess.rst) | 0 | ||||
-rw-r--r-- | docs/systems.rst | 2 |
6 files changed, 6 insertions, 4 deletions
diff --git a/docs/_exts/redirects.py b/docs/_exts/redirects.py index 4eb7b855b58..af53f7f4fde 100644 --- a/docs/_exts/redirects.py +++ b/docs/_exts/redirects.py @@ -1,6 +1,9 @@ import os -redirects = [] +redirects = [ + ('llvmpipe', 'gallium/drivers/llvmpipe'), + ('postprocess', 'gallium/postprocess') +] def create_redirect(dst): tpl = '<html><head><meta http-equiv="refresh" content="0; url={0}"><script>window.location.replace("{0}")</script></head></html>' diff --git a/docs/contents.rst b/docs/contents.rst index 67246e3e014..4403bc0898d 100644 --- a/docs/contents.rst +++ b/docs/contents.rst @@ -44,9 +44,7 @@ debugging perf extensions - llvmpipe vmware-guest - postprocess application-issues viewperf xlibdriver diff --git a/docs/llvmpipe.rst b/docs/gallium/drivers/llvmpipe.rst index ec8e92dc0a8..ec8e92dc0a8 100644 --- a/docs/llvmpipe.rst +++ b/docs/gallium/drivers/llvmpipe.rst diff --git a/docs/gallium/index.rst b/docs/gallium/index.rst index 9688afb2215..29fbefa2eb5 100644 --- a/docs/gallium/index.rst +++ b/docs/gallium/index.rst @@ -16,6 +16,7 @@ Contents: cso distro drivers + postprocess glossary Indices and tables diff --git a/docs/postprocess.rst b/docs/gallium/postprocess.rst index 276f3863756..276f3863756 100644 --- a/docs/postprocess.rst +++ b/docs/gallium/postprocess.rst diff --git a/docs/systems.rst b/docs/systems.rst index b4f7d84191a..334a7667f9d 100644 --- a/docs/systems.rst +++ b/docs/systems.rst @@ -31,7 +31,7 @@ Hardware drivers include: Software drivers include: -- :doc:`llvmpipe <llvmpipe>` - uses LLVM for x86 JIT code generation +- :doc:`llvmpipe <gallium/drivers/llvmpipe>` - uses LLVM for x86 JIT code generation and is multi-threaded - softpipe - a reference Gallium driver - :doc:`svga <vmware-guest>` - driver for vmware virtual gpu |