mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
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.
This commit is contained in:
parent
d6649a8a4b
commit
62f37ee319
1 changed files with 1 additions and 2 deletions
|
@ -357,8 +357,7 @@ struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend) {
|
||||||
struct wlr_output *wlr_output = &output->wlr_output;
|
struct wlr_output *wlr_output = &output->wlr_output;
|
||||||
wlr_output_init(wlr_output, &x11->backend, &output_impl, x11->wl_display);
|
wlr_output_init(wlr_output, &x11->backend, &output_impl, x11->wl_display);
|
||||||
|
|
||||||
wlr_output->width = 1024;
|
wlr_output_update_custom_mode(wlr_output, 1024, 768, 0);
|
||||||
wlr_output->height = 768;
|
|
||||||
|
|
||||||
output->swapchain = wlr_swapchain_create(x11->allocator,
|
output->swapchain = wlr_swapchain_create(x11->allocator,
|
||||||
wlr_output->width, wlr_output->height, x11->drm_format);
|
wlr_output->width, wlr_output->height, x11->drm_format);
|
||||||
|
|
Loading…
Reference in a new issue