diff options
author | Ilia Mirkin <[email protected]> | 2020-04-05 23:43:08 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2020-04-12 12:01:46 -0400 |
commit | 4137a79c2a7edb5f0caf0964ab748da7c279b61c (patch) | |
tree | 8993c288657c309a73cc74606bb01149860b3612 /src/gallium/auxiliary/util | |
parent | e2457bedd389c6799fe99b1e0d6ade36b763c6c3 (diff) |
gallium: add viewport swizzling state and cap
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4519>
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_screen.c b/src/gallium/auxiliary/util/u_screen.c index d770a84c21a..c6795ac260e 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -258,6 +258,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_MAX_WINDOW_RECTANGLES: /* Enables EXT_window_rectangles */ case PIPE_CAP_POLYGON_OFFSET_UNITS_UNSCALED: case PIPE_CAP_VIEWPORT_SUBPIXEL_BITS: + case PIPE_CAP_VIEWPORT_SWIZZLE: case PIPE_CAP_MIXED_COLOR_DEPTH_BITS: case PIPE_CAP_TGSI_ARRAY_COMPONENTS: case PIPE_CAP_STREAM_OUTPUT_INTERLEAVE_BUFFERS: |