Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | output-damage: fix missing wlr_box include | emersion | |
2018-03-30 | xwayland: rename map_notify to map for consistency | emersion | |
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 | remove xdg-positioner wlr wrappers | Tony Crisci | |
2018-03-28 | rename xdg-positioner structs | Tony Crisci | |
2018-03-28 | xdg-positioner wlr abstractions | Tony Crisci | |
2018-03-28 | Merge pull request #765 from swaywm/transformed-events | emersion | |
Use libinput transformed events instead of width_mm/height_mm | |||
2018-03-28 | Merge pull request #763 from emersion/x11-backend-kbd-modifiers | Drew DeVault | |
backend/x11: correctly update keyboard modifiers | |||
2018-03-28 | Address review feedback | Drew DeVault | |
2018-03-28 | Remove width_mm from tablet events | Drew DeVault | |
2018-03-28 | Remove width_mm from wlr_touch events | Drew DeVault | |
2018-03-28 | Remove width_mm from wlr_pointer events | Drew DeVault | |
2018-03-28 | backend/x11: make xcb-xkb optional, remove global state | emersion | |
2018-03-28 | Merge branch 'master' into xdg-positioner | Tony Crisci | |
2018-03-28 | Merge pull request #744 from emersion/texture-redesign | Tony Crisci | |
Redesign wlr_texture | |||
2018-03-27 | Fix ack configure/configure flow | Drew DeVault | |
Prevents FOUC/improves frame perfect rendering goal | |||
2018-03-27 | Address @emersion's feedback | Drew DeVault | |
2018-03-27 | Fix issue starting up client EGL on X11 backend | Drew DeVault | |
2018-03-27 | Fix surface layer damage tracking | Drew DeVault | |
2018-03-27 | Fix layer rendering/layout bugs | Drew DeVault | |
2018-03-27 | Handle usable area for maximized windows | Drew DeVault | |
Also fixes some bugs | |||
2018-03-27 | Reset exclusivity after shell layer | Drew DeVault | |
Also fixes an issue which was applying exclusivity to all edges | |||
2018-03-27 | Add layer_surface.close | Drew DeVault | |
2018-03-27 | Gracefully deal with outputs being removed | Drew DeVault | |
2018-03-27 | Implement layer surface damage | Drew DeVault | |
2018-03-27 | Arrange & render layer surfaces | Drew DeVault | |
2018-03-27 | Add broken test client and rootston stubs | Drew DeVault | |
2018-03-27 | Address feedback | Drew DeVault | |
2018-03-27 | Add wlr_layer_surface_configure | Drew DeVault | |
2018-03-27 | Implement layer surface requests | Drew DeVault | |
2018-03-27 | Wire up layer surface resources to stubs | Drew DeVault | |
2018-03-27 | Initial scaffolding of layer shell | Drew DeVault | |
2018-03-27 | Merge pull request #754 from emersion/popup-map-unmap-damage | Tony Crisci | |
[WIP] xdg-shell: damage view when popup is mapped/unmapped | |||
2018-03-27 | rootston: damage view when xdg-popup is mapped/unmapped | emersion | |
2018-03-27 | rootston: damage view when zxdg-popup-v6 is mapped/unmapped | emersion | |
2018-03-27 | render: remove GL calls from wlr_egl | emersion | |
2018-03-27 | implement flip_x | Tony Crisci | |
2018-03-27 | Merge pull request #753 from emersion/xdg-shell-unmap-destroy | Drew DeVault | |
xdg-shell-v6: don't destroy role resources on unmap | |||
2018-03-27 | xdg-shell: don't destroy role resources on unmap, move toplevel fields | emersion | |
Ports 5233801530c5ccc95699a12ba7da2d7ce58c952c and 334bab543d6688769a86374a1ddd3d3b36e619b4 to xdg-shell stable. | |||
2018-03-27 | Improve documentation of wlr_cursor | Drew DeVault | |
2018-03-27 | Fix x11 backend | Dominique Martinet | |
Need to include wlr/config.h before using the various WLR_HAS_xxx defines | |||
2018-03-26 | xdg-positioner constraint detection | Tony Crisci | |
2018-03-26 | xdg-shell-v6, xdg-shell: explain what popup geometry is | emersion | |
2018-03-26 | xdg-shell-v6: move toplevel specific fields in wlr_xdg_toplevel_v6 | emersion | |
2018-03-26 | Merge branch 'master' into texture-redesign | emersion | |
2018-03-26 | xdg-shell-v6: don't destroy role resources on unmap | emersion | |
The motivation for this is: - `get_popup` and `get_toplevel` allocate role-specific resources. - On the first non-null commit, the surface gets mapped. - On a null commit, the surface gets unmapped. It can be mapped again with a non-null commit. - When the role object (xdg-toplevel or xdg-popup) is destroyed, the surface is unmapped and role-specific resources are destroyed. The client can call `get_popup` or `get_toplevel` again on that surface. - When the xdg-surface object is destroyed, the surface is unmapped, role-specific resources are destroyed and the surface itself is destroyed. |