From 62f37ee319804b53b434a84ae2849bf30f9cc089 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Tue, 19 Jan 2021 20:38:22 -0500 Subject: [PATCH] backend/x11: make sure output transform matrix is initialized The transform matrix was all 0's, which meant that effectively nothing got rendered other than the clear color. --- backend/x11/output.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/x11/output.c b/backend/x11/output.c index 2065aea3..3ca4a235 100644 --- a/backend/x11/output.c +++ b/backend/x11/output.c @@ -357,8 +357,7 @@ struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend) { struct wlr_output *wlr_output = &output->wlr_output; wlr_output_init(wlr_output, &x11->backend, &output_impl, x11->wl_display); - wlr_output->width = 1024; - wlr_output->height = 768; + wlr_output_update_custom_mode(wlr_output, 1024, 768, 0); output->swapchain = wlr_swapchain_create(x11->allocator, wlr_output->width, wlr_output->height, x11->drm_format);