aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-31FIx crash on touch downDrew DeVault
2018-03-31Merge pull request #790 from orestisf1993/fix-buildDrew DeVault
Another gcc false positive
2018-03-31Initialize roots_output to fix -Wmaybe-uninitializedOrestis 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-31Merge pull request #789 from emersion/xwayland-h-styleDrew DeVault
xwyaland: fix style issues
2018-03-31xwyaland: fix style issuesemersion
2018-03-31Merge pull request #788 from emersion/xwm-cursor-strideDrew DeVault
xwayland: specify xwm cursor stride in bytes
2018-03-31Downgrade gles2 messages to L_DEBUGDrew DeVault
L_INFO is for stuff that's useful to the user
2018-03-31xwayland: specify xwm cursor stride in bytesemersion
2018-03-31Don't destroying all layer surfaces on client d/cDrew DeVault
2018-03-30Merge pull request #787 from swaywm/input-pointemersion
Add wlr_surface_point_accepts_input
2018-03-30Add wlr_surface_point_accepts_inputDrew DeVault
Ref https://github.com/swaywm/sway/pull/1674
2018-03-30Add more exotic cursor for layer shell exampleDrew DeVault
So it's more obvious that it's being set
2018-03-30Merge pull request #783 from swaywm/layer-inputDrew DeVault
Add pointer input to layer surfaces
2018-03-30Address review feedbackDrew DeVault
2018-03-30Merge pull request #782 from orestisf1993/fix-buildemersion
Fix build error with -O2
2018-03-30Minor bugfixesDrew DeVault
2018-03-30Add pointer support to layer shell exampleDrew DeVault
2018-03-31Fix build error with -O2Orestis 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-30Find layer surfaces for input eventsDrew DeVault
2018-03-30Refactor cursor event passhtroughDrew DeVault
2018-03-30Merge pull request #779 from emersion/xwayland-map-consistencyTony Crisci
xwayland: rename map_notify to map for consistency
2018-03-30Merge pull request #780 from emersion/output-damage-box-includeemersion
output-damage: fix missing wlr_box include
2018-03-30output-damage: fix missing wlr_box includeemersion
2018-03-30xwayland: rename map_notify to map for consistencyemersion
2018-03-29Merge pull request #777 from emersion/fix-surface-buffer-not-updatedDrew DeVault
surface: fix texture not updated on commit
2018-03-29surface: fix texture not updated on commitemersion
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-29Destroy layer surfaces on client destroyedDrew DeVault
2018-03-29Fix maximized windows interaction with layer shellDrew DeVault
If there were no layer surfaces the usable area of the output would be an empty box.
2018-03-29Merge pull request #720 from acrisci/xdg-positioneremersion
xdg-positioner
2018-03-28toplevel_box to toplevel_sx_boxTony Crisci
2018-03-28add todo for rotated unconstrained popupTony Crisci
2018-03-28add comment for output box in toplevel coordsTony Crisci
2018-03-28address toplevel coords issueTony Crisci
2018-03-28remove xdg-positioner wlr wrappersTony Crisci
2018-03-28bug: dont slide over too farTony Crisci
2018-03-28return early when no dest_x/y in output layout closest pointTony Crisci
2018-03-28popup constraint handle empty output layoutTony Crisci
2018-03-28dont allocate xdg-positioner attrsTony Crisci
2018-03-28rename xdg-positioner structsTony Crisci
2018-03-28xdg-positioner bugfixTony Crisci
2018-03-28xdg-positioner: honor constraint flagsTony Crisci
2018-03-28xdg-positioner wlr abstractionsTony Crisci
2018-03-28Merge pull request #765 from swaywm/transformed-eventsemersion
Use libinput transformed events instead of width_mm/height_mm
2018-03-28Fix wayland output absolute input handlingDrew DeVault
2018-03-28Merge pull request #763 from emersion/x11-backend-kbd-modifiersDrew DeVault
backend/x11: correctly update keyboard modifiers
2018-03-28positioner rootston cleanup and bugfixTony Crisci
2018-03-28Address review feedbackDrew DeVault
2018-03-28fix xdg-positioner left constrain bugTony Crisci
2018-03-28Remove width_mm from tablet eventsDrew DeVault
2018-03-28cleanup xdg-positioner rootston codeTony Crisci