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>
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)