diff options
author | Mathias Fröhlich <[email protected]> | 2018-09-06 16:13:42 +0200 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-09-10 07:59:31 +0200 |
commit | 4569bc6ad084eac392411117ad1fd3bd0706af75 (patch) | |
tree | 8aba38dee24807d2d2a00a44d4512103403130e1 /src/gallium/docs | |
parent | 240af6149477beb06fdcfc4b0295921448c0fe47 (diff) |
gallium: New cap PIPE_CAP_MAX_VERTEX_ELEMENT_SRC_OFFSET.
Introduce a new capability for the maximum value of
pipe_vertex_element::src_offset. Initially just every driver
backend returns the value previously set from _mesa_init_constants.
So this shall end up in no functional change.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Signed-off-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index b5ad8f970d2..0abd164494c 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -475,6 +475,8 @@ subpixel precision bias in bits during conservative rasterization. * ``PIPE_CAP_MAX_TEXTURE_UPLOAD_MEMORY_BUDGET: Maximum recommend memory size for all active texture uploads combined. This is a performance hint. 0 means no limit. +* ``PIPE_CAP_MAX_VERTEX_ELEMENT_SRC_OFFSET``: The maximum supported value for + of pipe_vertex_element::src_offset. .. _pipe_capf: |