aboutsummaryrefslogtreecommitdiff
path: root/rootston/output.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-11-21 10:14:50 +0100
committeremersion <contact@emersion.fr>2017-11-21 10:14:50 +0100
commit9e29621ec32f6142f482780c764e6e93af31b806 (patch)
tree9451b9f1ec3e913287dc7d7c7bb33bc36a71b7cc /rootston/output.c
parent17d9e2ce3508d21ccdc9907b02d127b47a4a21bb (diff)
Always center fullscreen view on screen
Diffstat (limited to 'rootston/output.c')
-rw-r--r--rootston/output.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/rootston/output.c b/rootston/output.c
index d62c0b0d..bf684f2f 100644
--- a/rootston/output.c
+++ b/rootston/output.c
@@ -2,6 +2,7 @@
#include <time.h>
#include <stdlib.h>
#include <stdbool.h>
+#include <GLES2/gl2.h>
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_compositor.h>
#include <wlr/types/wlr_wl_shell.h>
@@ -194,11 +195,26 @@ static void output_frame_notify(struct wl_listener *listener, void *data) {
wlr_renderer_begin(server->renderer, wlr_output);
if (output->fullscreen_view != NULL) {
+ // Make sure the view is centered on screen
+ const struct wlr_box *output_box =
+ wlr_output_layout_get_box(desktop->layout, wlr_output);
+ struct wlr_box view_box;
+ view_get_box(output->fullscreen_view, &view_box);
+ double view_x = (double)(output_box->width - view_box.width) / 2 +
+ output_box->x;
+ double view_y = (double)(output_box->height - view_box.height) / 2 +
+ output_box->y;
+ view_move(output->fullscreen_view, view_x, view_y);
+
if (has_standalone_surface(output->fullscreen_view)) {
wlr_output_set_fullscreen_surface(wlr_output,
output->fullscreen_view->wlr_surface);
} else {
wlr_output_set_fullscreen_surface(wlr_output, NULL);
+
+ glClearColor(0, 0, 0, 0);
+ glClear(GL_COLOR_BUFFER_BIT);
+
render_view(output->fullscreen_view, desktop, wlr_output, &now);
}
wlr_renderer_end(server->renderer);