diff options
author | Józef Kucia <[email protected]> | 2016-07-19 13:07:24 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-07-20 12:45:31 +0200 |
commit | 3cd28fe3de203934f2bab33cce7a91da499c7376 (patch) | |
tree | 47b3358eebd90ca4cfb6ad40b79e688d892eecfd /src/gallium/include/pipe | |
parent | 3c78d89692a533879efa64f778712dfd537bd105 (diff) |
gallium: add a cap for VIEWPORT_SUBPIXEL_BITS (v2)
This allows Gallium drivers to advertise the subpixel precision
for floating point viewports bounds.
v2:
- Set ViewportSubpixelBits in st_init_limits.
Signed-off-by: Józef Kucia <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Reviewed-by: Ilia Mirkin <[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 62fa67374f2..3ab6c2f62b0 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -732,6 +732,7 @@ enum pipe_cap PIPE_CAP_TGSI_VOTE, PIPE_CAP_MAX_WINDOW_RECTANGLES, PIPE_CAP_POLYGON_OFFSET_UNITS_UNSCALED, + PIPE_CAP_VIEWPORT_SUBPIXEL_BITS, }; #define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 (1 << 0) |