Skip to content
Snippets Groups Projects
Commit da12be49 authored by Sjoerd Simons's avatar Sjoerd Simons
Browse files

gstreamer-buffer: Make the stage color fully opaque


Using an alpha value of 0 makes the stage transparent if the device
happens to have an ARGB visual on X (or always on wayland)

Signed-off-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: default avatarPhilip Withnall <philip.withnall@collabora.co.uk>
Reviewed-by: default avatarMathieu Duponchelle <meh@collabora.co.uk>

Differential Revision: https://phabricator.apertis.org/D1154
parent 1469924e
No related branches found
No related tags found
No related merge requests found
......@@ -501,7 +501,7 @@ main (int argc, char *argv[])
GstElement *goomsource;
GstIterator *iter;
ClutterActor *stage;
ClutterColor stage_color = { 0x00, 0x00, 0x00, 0x00 };
ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff };
ClutterColor control_color1 = { 73, 74, 77, 0xee };
ClutterColor control_color2 = { 0xcc, 0xcc, 0xcc, 0xff };
GError *error = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment