diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-12-19 11:42:13 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-12-19 11:42:13 -0800 |
commit | f1ef9b7db4d5db51cf96fa2dbaf9e243fb8e0e38 (patch) | |
tree | 2761f994b04ad6fd4f605da6e04f21b5ee0358a9 | |
parent | e5b8b0e8d74576db246aff5377ba7e594f16c0c5 (diff) |
gallium/docs: Add newlines between levels of nested lists
rst is whitespace sensitive and not putting the spaces actually manes to
make the following text a block quote rather than a sublist.
Cleans up another sphinx warning.
-rw-r--r-- | src/gallium/docs/context.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/docs/context.rst b/src/gallium/docs/context.rst index e190cefc85..96ae62577e 100644 --- a/src/gallium/docs/context.rst +++ b/src/gallium/docs/context.rst @@ -91,10 +91,12 @@ objects. They all follow simple, one-method binding calls, e.g. blits. (Blits have their own way to pass the requisite rectangles in.) * ``set_tess_state`` configures the default tessellation parameters: + * ``default_outer_level`` is the default value for the outer tessellation levels. This corresponds to GL's ``PATCH_DEFAULT_OUTER_LEVEL``. * ``default_inner_level`` is the default value for the inner tessellation levels. This corresponds to GL's ``PATCH_DEFAULT_INNER_LEVEL``. + * ``set_debug_callback`` sets the callback to be used for reporting various debug messages, eventually reported via KHR_debug and similar mechanisms. |