Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-31 | Fix cursor transform on DRM backend | emersion | |
2018-03-31 | Merge pull request #793 from emersion/x11-backend-flush-destroy-window | Drew DeVault | |
backend/x11: flush after destroying window | |||
2018-03-31 | backend/x11: flush after destroying window | emersion | |
Otherwise the destroy message is kept buffered and never reaches the X11 server. Thanks X11. | |||
2018-03-31 | Merge pull request #786 from emersion/x11-backend-multiple-outputs | Drew DeVault | |
backend/x11: add support for multiple outputs | |||
2018-03-31 | FIx crash on touch down | Drew DeVault | |
2018-03-31 | Merge pull request #790 from orestisf1993/fix-build | Drew DeVault | |
Another gcc false positive | |||
2018-03-31 | Initialize roots_output to fix -Wmaybe-uninitialized | Orestis Floros | |
With -O2: ../rootston/desktop.c: In function ‘desktop_surface_at’: ../rootston/desktop.c:714:18: error: ‘roots_output’ may be used uninitialized in this function [-Werror=maybe-uninitialized] if ((surface = layer_surface_at(roots_output, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ &roots_output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ox, oy, sx, sy))) { ~~~~~~~~~~~~~~~ | |||
2018-03-31 | Merge pull request #789 from emersion/xwayland-h-style | Drew DeVault | |
xwyaland: fix style issues | |||
2018-03-31 | xwyaland: fix style issues | emersion | |
2018-03-31 | Merge pull request #788 from emersion/xwm-cursor-stride | Drew DeVault | |
xwayland: specify xwm cursor stride in bytes | |||
2018-03-31 | Downgrade gles2 messages to L_DEBUG | Drew DeVault | |
L_INFO is for stuff that's useful to the user | |||
2018-03-31 | xwayland: specify xwm cursor stride in bytes | emersion | |
2018-03-31 | Don't destroying all layer surfaces on client d/c | Drew DeVault | |
2018-03-30 | backend/x11: fix extra output | emersion | |
2018-03-30 | backend/wayland: cleanup input transform code | emersion | |
2018-03-30 | backend/x11: fix input events | emersion | |
2018-03-30 | backend/x11: add WLR_X11_OUTPUTS support | emersion | |
2018-03-30 | backend/x11: refactor, prepare support for multiple outputs | emersion | |
2018-03-30 | Merge pull request #787 from swaywm/input-point | emersion | |
Add wlr_surface_point_accepts_input | |||
2018-03-30 | Add wlr_surface_point_accepts_input | Drew DeVault | |
Ref https://github.com/swaywm/sway/pull/1674 | |||
2018-03-30 | Add more exotic cursor for layer shell example | Drew DeVault | |
So it's more obvious that it's being set | |||
2018-03-30 | Merge pull request #783 from swaywm/layer-input | Drew DeVault | |
Add pointer input to layer surfaces | |||
2018-03-30 | Address review feedback | Drew DeVault | |
2018-03-30 | Merge pull request #782 from orestisf1993/fix-build | emersion | |
Fix build error with -O2 | |||
2018-03-30 | Minor bugfixes | Drew DeVault | |
2018-03-30 | Add pointer support to layer shell example | Drew DeVault | |
2018-03-31 | Fix build error with -O2 | Orestis Floros | |
../render/gles2/renderer.c: In function ‘gles2_render_texture_with_matrix’: ../render/gles2/renderer.c:140:2: error: ‘target’ may be used uninitialized in this function [-Werror=maybe-uninitialized] glBindTexture(target, tex_id); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../render/gles2/renderer.c:145:2: error: ‘prog’ may be used uninitialized in this function [-Werror=maybe-uninitialized] glUseProgram(prog); | |||
2018-03-30 | Find layer surfaces for input events | Drew DeVault | |
2018-03-30 | Refactor cursor event passhtrough | Drew DeVault | |
2018-03-30 | Merge pull request #779 from emersion/xwayland-map-consistency | Tony Crisci | |
xwayland: rename map_notify to map for consistency | |||
2018-03-30 | Merge pull request #780 from emersion/output-damage-box-include | emersion | |
output-damage: fix missing wlr_box include | |||
2018-03-30 | output-damage: fix missing wlr_box include | emersion | |
2018-03-30 | xwayland: rename map_notify to map for consistency | emersion | |
2018-03-29 | Merge pull request #777 from emersion/fix-surface-buffer-not-updated | Drew DeVault | |
surface: fix texture not updated on commit | |||
2018-03-29 | surface: fix texture not updated on commit | emersion | |
When a client attaches a wl_drm or a linux_dmabuf buffer, we only update it if the size is different from the one of the old buffer. This means that if the client attaches a new, updated buffer with the same size as the old buffer, the texture won't get updated. This commit changes this behavior and re-creates the texture if the client attaches a new buffer, without requiring the size to be different. | |||
2018-03-29 | Destroy layer surfaces on client destroyed | Drew DeVault | |
2018-03-29 | Fix maximized windows interaction with layer shell | Drew DeVault | |
If there were no layer surfaces the usable area of the output would be an empty box. | |||
2018-03-29 | Merge pull request #720 from acrisci/xdg-positioner | emersion | |
xdg-positioner | |||
2018-03-28 | toplevel_box to toplevel_sx_box | Tony Crisci | |
2018-03-28 | add todo for rotated unconstrained popup | Tony Crisci | |
2018-03-28 | add comment for output box in toplevel coords | Tony Crisci | |
2018-03-28 | address toplevel coords issue | Tony Crisci | |
2018-03-28 | remove xdg-positioner wlr wrappers | Tony Crisci | |
2018-03-28 | bug: dont slide over too far | Tony Crisci | |
2018-03-28 | return early when no dest_x/y in output layout closest point | Tony Crisci | |
2018-03-28 | popup constraint handle empty output layout | Tony Crisci | |
2018-03-28 | dont allocate xdg-positioner attrs | Tony Crisci | |
2018-03-28 | rename xdg-positioner structs | Tony Crisci | |
2018-03-28 | xdg-positioner bugfix | Tony Crisci | |
2018-03-28 | xdg-positioner: honor constraint flags | Tony Crisci | |