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/include/pipe | |
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/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_defines.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index 6f11527d5ca..c58f1659625 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -824,6 +824,7 @@ enum pipe_cap PIPE_CAP_MAX_COMBINED_HW_ATOMIC_COUNTERS, PIPE_CAP_MAX_COMBINED_HW_ATOMIC_COUNTER_BUFFERS, PIPE_CAP_MAX_TEXTURE_UPLOAD_MEMORY_BUDGET, + PIPE_CAP_MAX_VERTEX_ELEMENT_SRC_OFFSET, }; /** |