diff options
author | Ilia Mirkin <[email protected]> | 2016-06-11 15:26:45 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-06-18 13:38:29 -0400 |
commit | 07fcb06fe0220a51ad20b6b8a70512071999182c (patch) | |
tree | 9dd26a00ea363cbb5500cb148ee86c5e93c8c5f2 /src/gallium/include/pipe | |
parent | 82fab73246810332bb238e96335ba81d4d2182d6 (diff) |
gallium: add PIPE_CAP_MAX_WINDOW_RECTANGLES to all drivers
This says how many window rectangles are supported by the
implementation, although it may not exceed PIPE_MAX_WINDOW_RECTANGLES.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Brian Paul <[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 569725f4b23..c46ac5a6a63 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -730,6 +730,7 @@ enum pipe_cap PIPE_CAP_CULL_DISTANCE, PIPE_CAP_PRIMITIVE_RESTART_FOR_PATCHES, PIPE_CAP_TGSI_VOTE, + PIPE_CAP_MAX_WINDOW_RECTANGLES, }; #define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 (1 << 0) |