gallium/docs: update to recent sphinx

add_description_unit has been deprectated for a really long time, and was
finally removed (seemingly in Sphinx 2.0, but this doesn't seem to be
properly documented anywhere I can find), so we shouldn't be using this
any more.

Anyway, let's update the code.

Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Acked-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5691>
This commit is contained in:
Erik Faye-Lund 2020-06-30 11:05:42 +02:00 committed by Marge Bot
parent 2bf2e6c83d
commit 7f5061c0b7
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ def parse_opcode(env, sig, signode):
return opcode
def setup(app):
app.add_description_unit("envvar", "envvar", "%s (environment variable)",
app.add_object_type("envvar", "envvar", "%s (environment variable)",
parse_envvar)
app.add_description_unit("opcode", "opcode", "%s (TGSI opcode)",
app.add_object_type("opcode", "opcode", "%s (TGSI opcode)",
parse_opcode)