diff options
author | Corbin Simpson <[email protected]> | 2010-08-15 03:05:18 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2010-08-15 03:43:54 -0700 |
commit | bf357aedffd659e43ef9ceefa875c08991a5f46d (patch) | |
tree | aeb7a43c13125dc0cc294692990f2f0e6abae0bc /src/gallium/docs/source/exts/tgsi.py | |
parent | d375cb869e1ea3baa191b7a0fbc2d606843bddec (diff) |
gallium/docs: Add formatting for envvar role; change debugging.
Per Jakob's request. Not super-pretty, but it's a good point for modding
later.
Diffstat (limited to 'src/gallium/docs/source/exts/tgsi.py')
-rw-r--r-- | src/gallium/docs/source/exts/tgsi.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/gallium/docs/source/exts/tgsi.py b/src/gallium/docs/source/exts/tgsi.py deleted file mode 100644 index e92cd5c4d1b..00000000000 --- a/src/gallium/docs/source/exts/tgsi.py +++ /dev/null @@ -1,17 +0,0 @@ -# tgsi.py -# Sphinx extension providing formatting for TGSI opcodes -# (c) Corbin Simpson 2010 - -import docutils.nodes -import sphinx.addnodes - -def parse_opcode(env, sig, signode): - opcode, desc = sig.split("-", 1) - opcode = opcode.strip().upper() - desc = " (%s)" % desc.strip() - signode += sphinx.addnodes.desc_name(opcode, opcode) - signode += sphinx.addnodes.desc_annotation(desc, desc) - return opcode - -def setup(app): - app.add_description_unit("opcode", "opcode", "%s (TGSI opcode)", parse_opcode) |