diff options
author | Ilia Mirkin <[email protected]> | 2015-02-01 09:01:50 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-02-02 20:44:02 -0500 |
commit | 7c211a12aa6c22187264f718c81224a70e224ebe (patch) | |
tree | d041960cd644bbd3595a65e1bee0db15bdce436f /src/gallium/include | |
parent | 2ce29ce5afbace43836fb55e8a5b5a989a222529 (diff) |
gallium: add a cap to determine whether the driver supports offset_clamp
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Glenn Kennard <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_defines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index 6c5703ad46f..fd32c4aaeaf 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -572,7 +572,8 @@ enum pipe_cap { PIPE_CAP_MAX_VERTEX_ATTRIB_STRIDE = 109, PIPE_CAP_SAMPLER_VIEW_TARGET = 110, PIPE_CAP_CLIP_HALFZ = 111, - PIPE_CAP_VERTEXID_NOBASE, + PIPE_CAP_VERTEXID_NOBASE = 112, + PIPE_CAP_POLYGON_OFFSET_CLAMP = 113, }; #define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 (1 << 0) |