Skip to content
Snippets Groups Projects
Commit f5b5ad2c authored by Mikhail Vanyulin's avatar Mikhail Vanyulin Committed by Jonas Höppner
Browse files

weston-init: fix display flickering

Refer to https://secogroup.atlassian.net/browse/YT-85

 for full discussion
on this topic.

For some unknown reason, when the transparency part of "background-color"
parameter in weston.ini is lower than FF, display (both LVDS and HDMI) starts
to constantly blink if some object/sprite is moving on display.

Herewith this issue cannot be seen if application is launched in full screen
mode (e.g if seco-show-demo is running). But if seco-show-demo is stopped,
the problem immediately appears when a mouse cursor or "weston-flower" are
moved.

As digging into weston internals to understand what is going on will require
reasonable efforts, we simply changed background-color to 0xFF000000, which
also produces a black background, but which does not cause the blinking
issue to appear.

Signed-off-by: default avatarMikhail Vanyulin <mikhail.vanyulin@rtsoft.de>
parent 8e1c513b
No related branches found
No related tags found
1 merge request!762weston-init: fix display flickering
...@@ -11,7 +11,7 @@ use-pixman=false ...@@ -11,7 +11,7 @@ use-pixman=false
[shell] [shell]
panel-position=none panel-position=none
background-color=0x00FFFFFF background-color=0xFF000000
[output] [output]
name=DPI-1 name=DPI-1
......
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