diff options
author | emersion <contact@emersion.fr> | 2018-05-20 13:52:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 13:52:14 +0100 |
commit | 327aa7f49d14d22aacf987625fef65b80496eddb (patch) | |
tree | 96d7dc427252fde5c1a6c43e3bd6c90146b5c1ba /rootston | |
parent | 8585533a78413bd2dd98ca91c17781ace750cca3 (diff) | |
parent | e849a68e6e9252c5998ee053df288379f8a2ce68 (diff) |
Merge pull request #990 from emersion/fullscreen-clear-alpha
output: correctly clear screen when fullscreened
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/output.c b/rootston/output.c index e07cd935..faa808d1 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -458,7 +458,7 @@ static void render_output(struct roots_output *output) { } if (server->config->debug_damage_tracking) { - wlr_renderer_clear(renderer, (float[]){1, 1, 0, 0}); + wlr_renderer_clear(renderer, (float[]){1, 1, 0, 1}); } int nrects; |