diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2017-01-27 17:30:25 +0100 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2017-02-07 13:26:26 +0200 |
commit | a21b5ebf85f385dadc817c908f808fedaa4334d5 (patch) | |
tree | 7eb1d25b8dcf88f9f03dc3cd1cb825c46b337e41 /tests | |
parent | 7bcec20cc3c6826baf72e0ca16f700fb63bf3abe (diff) |
tests/shell: change background color
Pick the color 0xCC336699 as AARRGGBB, as if blended on black. This is
the color used with developing the sub-surface shot tests.
No other big reason than it should not be black to have better chances
of catching blending problems.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Micah Fedke <micah.fedke@collabora.co.uk>
Reviewed-by: Quentin Glidic <sardemff7+git@sardemff7.net>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/weston-test-desktop-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/weston-test-desktop-shell.c b/tests/weston-test-desktop-shell.c index 2cf2271e..de844251 100644 --- a/tests/weston-test-desktop-shell.c +++ b/tests/weston-test-desktop-shell.c @@ -204,7 +204,7 @@ wet_shell_init(struct weston_compositor *ec, if (dts->background_view == NULL) goto out_surface; - weston_surface_set_color(dts->background_surface, 0.0, 0.0, 0.0, 1); + weston_surface_set_color(dts->background_surface, 0.16, 0.32, 0.48, 1.); pixman_region32_fini(&dts->background_surface->opaque); pixman_region32_init_rect(&dts->background_surface->opaque, 0, 0, 2000, 2000); pixman_region32_fini(&dts->background_surface->input); |