aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-03Fix segfault when clicking rootston desktopDrew DeVault
2018-04-03Merge pull request #806 from DanySpin97/masteremersion
Install include directory into includedir
2018-04-03Install include directory into includedirDanilo Spinella
Follow includedir parameter when installing include directory.
2018-04-02Missed a spotDrew DeVault
2018-04-02Merge pull request #804 from swaywm/keyboard-layersDrew DeVault
Add keyboard input to layer surfaces
2018-04-02Add wlr_surface_is_*_surfaceDrew DeVault
And wlr_*_surface_from_wlr_surface
2018-04-02Address review feedbackDrew DeVault
2018-04-02Handle layer surfaces below shell surfacesDrew DeVault
2018-04-02Merge pull request #805 from DanySpin97/masterDrew DeVault
Change meson option names to use hypen
2018-04-02Change meson option names to use hypenDanilo Spinella
Replace underscore with hypen in meson option names, following style recommendations. http://mesonbuild.com/Style-guide.html#naming-options
2018-04-02Always give keyboard focus to the topmost layerDrew DeVault
2018-04-02Identify topmost interactive layer surfaceDrew DeVault
2018-04-02Don't reset exclusive between layer shell passesDrew DeVault
This is not the intended behavior of exclusive zones, the second pass is meant to respect the usable area.
2018-04-02Merge pull request #800 from emersion/untie-gles2-renderer-textureDrew DeVault
Untie wlr_gles2_renderer and wlr_gles2_texture
2018-04-02Merge pull request #792 from emersion/x11-backend-blank-cursorDrew DeVault
backend/x11: hide cursor
2018-04-02Merge pull request #802 from emersion/examples-remove-eglDrew DeVault
examples: get wlr_renderer from the backend
2018-04-02Merge pull request #799 from acrisci/annotate-output-layout-varsDrew DeVault
annotate wlr-output-layout coord variables
2018-04-01examples: get wlr_renderer from the backendemersion
2018-04-01Untie wlr_gles2_renderer and wlr_gles2_textureemersion
2018-04-01annotate wlr-output-layout coord variablesTony Crisci
2018-03-31Merge pull request #798 from emersion/wlr-egl-image-from-wl-drmemersion
render/egl: add wlr_egl_create_image_from_wl_drm
2018-03-31render/egl: add wlr_egl_create_image_from_wl_drmemersion
This allows external renderers and potential future GL-based renderers to re-use this function.
2018-03-31Merge pull request #794 from emersion/renderer-untie-backendDrew DeVault
Untie wlr_backend from wlr_renderer
2018-03-31Merge pull request #797 from emersion/drm-cursor-transformDrew DeVault
Fix cursor transform on DRM backend
2018-03-31Fix cursor transform on DRM backendemersion
2018-03-31Untie wlr_backend from wlr_rendereremersion
2018-03-31Merge pull request #793 from emersion/x11-backend-flush-destroy-windowDrew DeVault
backend/x11: flush after destroying window
2018-03-31backend/x11: flush after destroying windowemersion
Otherwise the destroy message is kept buffered and never reaches the X11 server. Thanks X11.
2018-03-31backend/x11: hide cursoremersion
2018-03-31Merge pull request #786 from emersion/x11-backend-multiple-outputsDrew DeVault
backend/x11: add support for multiple outputs
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-30backend/x11: fix extra outputemersion
2018-03-30backend/wayland: cleanup input transform codeemersion
2018-03-30backend/x11: fix input eventsemersion
2018-03-30backend/x11: add WLR_X11_OUTPUTS supportemersion
2018-03-30backend/x11: refactor, prepare support for multiple outputsemersion
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