diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2017-02-21 14:15:35 +0000 |
---|---|---|
committer | Eric Engestrom <eric@engestrom.ch> | 2017-02-22 00:00:38 +0000 |
commit | 3a0d2c54cff5fa1ef1bff1960e6e5ce7c012ae88 (patch) | |
tree | f598176f0aa328b2d26732ae9a3d9f7eca9402f1 /src | |
parent | 0441e6bc8b377cf7a7b8441bca69121b98e30620 (diff) |
gallium/docs: fix sublist formatting
src/gallium/docs/source/context.rst:95: ERROR: Unexpected indentation.
Sub lists need to be surrounded by a blank line.
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/docs/source/context.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/docs/source/context.rst b/src/gallium/docs/source/context.rst index d70e34e7aa..a053193722 100644 --- a/src/gallium/docs/source/context.rst +++ b/src/gallium/docs/source/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. |