aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-08add wlr_layer_surface_surface_atMarkus Ongyerth
Adds wlr_layer_surface_surface_at, this is consistent with the other shell implementations, and simplifies handling in compositors.
2018-05-07Merge pull request #957 from emersion/output-damage-max-rectsDrew DeVault
output-damage: limit the number of damaged rectangles
2018-05-05output-damage: limit the number of damaged rectanglesemersion
2018-05-05Merge pull request #956 from ↵Drew DeVault
Flow-It/add-options-to-exclude-rootston-and-examples Add options to exclude rootston and examples at compilation
2018-05-05Add option to disable examples buildflorian.weigelt
Compiling the examples is useful for testing and development, but less useful for actual users of wlroots. This commit adds the option --enable-examples to set weather to include the examples at compilation or not. The default value is True, so the current behaviour remains unchanged.
2018-05-05Merge pull request #954 from kkartaltepe/readme-fixemersion
Fix xcb/xkb swap in README
2018-05-05Add option to disable rootston buildflorian.weigelt
Compiling the rootston example compositor is useful for testing and development, but less useful for actual users of wlroots, who might prefer sway or other compositors. This commit adds the option --enable-rootston to set weather to include rootston at compilation or not. The default value is True, so the current compilation behaviour remains unchanged.
2018-05-05Fix xcb/xkb swap in READMEKurt Kartaltepe
2018-05-04Merge pull request #953 from emersion/xwayland-utf8-titleDrew DeVault
Use UTF-8 xwayland window title if available
2018-05-04Use UTF-8 xwayland window title if availableemersion
2018-05-04Merge pull request #936 from emersion/full-hardware-cursorsemersion
output: always use hardware cursors if available
2018-05-04Merge pull request #951 from chebykinn/fix-maybe-uninitializedemersion
Fix gcc maybe-uninitialized in wlr_cursor apply_output_transform
2018-05-04Merge pull request #931 from emersion/redesign-resource-destroyDrew DeVault
Redesign resource destruction
2018-05-04Fix gcc maybe-uninitialized in wlr_cursor apply_output_transformIvan Chebykin
2018-05-04Merge pull request #950 from emersion/fix-xdg-popup-not-topmost-segfaultDrew DeVault
Fix a rootston crash when a client creates non-topmost popups
2018-05-04Fix a rootston crash when a client creates non-topmost popupsemersion
2018-05-03Merge pull request #947 from Morganamilo/typosemersion
Fix typos across documentation, comments and strings
2018-05-03seat: implement inert seat resourcesemersion
2018-05-03Fix typos in comments and stringsmorganamilo
2018-05-03Fix typos in documentationmorganamilo
2018-05-03Merge pull request #943 from agx/env-varsDrew DeVault
Document env vars used by wlroots/rootston
2018-05-03Merge pull request #945 from agx/wlr-drm-no-atomicemersion
drm: only disable atomic modesetting when WLR_DRM_NO_ATOMIC == 1
2018-05-03data-device: make sure resources are correctly destroyedemersion
2018-05-03output: simplify and update code styleemersion
2018-05-03linux-dmabuf: correctly destroy resourcesemersion
2018-05-03compositor, surface: correctly destroy resourcesemersion
2018-05-03Update CONTRIBUTING.md with protocol implementation guidelinesemersion
2018-05-03drm: only disable atomic modesetting when WLR_DRM_NO_ATOMIC == 1Guido Günther
Don't allow any value of the env var to disable atomic mode setting.
2018-05-03Document env vars used by wlrootsGuido Günther
2018-05-03Merge pull request #935 from agx/cursor-output-transformDrew DeVault
wlr_cursor: transform absolute coordinates
2018-05-03Merge pull request #938 from emersion/reorder-seatDrew DeVault
seat: split into multiple files
2018-05-03seat: split into multiple filesemersion
2018-05-03Merge pull request #937 from emersion/reorder-data-deviceemersion
data-device: split into multiple files
2018-05-03Merge pull request #939 from ammen99/masteremersion
rootston: remove mode and transform signals when output is destroyed
2018-05-03backend/wayland: don't transform pointer eventsGuido Günther
We do this in a backend independent way in wlr_cursor now.
2018-05-03backend/x11: don't transform pointer eventsGuido Günther
We do this in a backend independent way in wlr_cursor now.
2018-05-03wlr_cursor: transform absolute coordinatesGuido Günther
Honor output rotation when processing absolute coordinates. This fixes touch events on rotated outputs. Fixes #928
2018-05-03rootston: remove mode and transform signals when output is destroyedIlia Bozhinov
2018-05-02data-device: split into multiple filesemersion
2018-05-02output: assert move_cursor if set_cursor is availableemersion
2018-05-02Silently ignore touch_{motion,up} for unknown idsDrew DeVault
2018-05-01output: always use hardware cursors if availableemersion
This changes the `wlr_output_impl.set_cursor` function to take a `wlr_texture` instead of a byte buffer. This simplifies the DRM and Wayland backends since they were creating textures from the byte buffer anyway. With this commit, performance should be improved when moving the cursor since outputs don't need to be re-rendered anymore.
2018-04-30Merge pull request #930 from emersion/input-device-output-nameemersion
Add wlr_input_device.output_name
2018-04-30backend/{wayland,x11}: fix pointer coords for transformed outputsemersion
2018-04-29backend/x11: add one pointer per outputemersion
2018-04-29backend/wayland: only set one pointer listeneremersion
2018-04-29rootston: map input devices with wlr_input_device.output_nameemersion
2018-04-29backend/wayland: create one virtual pointer per outputemersion
2018-04-29input-device: add output_name field, populate it from libinputemersion
2018-04-29Merge pull request #926 from emersion/fix-x11-backend-memory-leaksDrew DeVault
Fix some backend memory leaks