Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-01 | Merge pull request #377 from emersion/output-needs-swap | Drew DeVault | |
Add wlr_output.needs_swap | |||
2017-11-01 | Add wlr_output.needs_swap | emersion | |
2017-11-01 | Merge pull request #376 from martinetd/rootston_exit | Drew DeVault | |
Fix rootston exit segfaults | |||
2017-11-01 | rootston exit: fix libinput destroy | Dominique Martinet | |
The wlr_list -> wl_list rework changed 'wlr_devices' to wl_list, but missed its use on destroy. | |||
2017-11-01 | rootston exit: fix drm destroy | Dominique Martinet | |
wlr_drm_connector were being freed without removing them from the drm->outputs list, segfaulting on destroy | |||
2017-11-01 | Merge pull request #374 from emersion/set-cursor-event-serial | Drew DeVault | |
Add wlr_seat_pointer_request_set_cursor_event.serial | |||
2017-11-01 | Add wlr_seat_pointer_request_set_cursor_event.serial | emersion | |
2017-11-01 | Merge pull request #365 from emersion/wayland-backend-transform | Drew DeVault | |
Cursors ✕ Output Transformations fixes | |||
2017-11-01 | Remove mysterious hotspot switch in DRM backend | emersion | |
2017-11-01 | Fix hidden software cursors, fix cursor transformations on DRM backend | emersion | |
2017-11-01 | Merge pull request #368 from acrisci/bug/seat-clear-focus | Drew DeVault | |
wlr-seat bug: dont set focus surface to null then clear focus | |||
2017-11-01 | wlr-seat bug: dont set focus surface to null then clear focus | Tony Crisci | |
2017-11-01 | Merge pull request #367 from acrisci/bug/dnd-force-cancel | Drew DeVault | |
bugfix: dnd force cancel | |||
2017-11-01 | bugfix: dnd force cancel | Tony Crisci | |
2017-11-01 | Merge pull request #366 from martinetd/no_config_start | Tony Crisci | |
rootston: fix startup with no config | |||
2017-11-01 | rootston: fix startup with no config | Dominique Martinet | |
Would choke on NULL name on strcmp later on: #0 0x00007ffff6e0ad4a in __strcmp_sse2_unaligned () at /usr/lib/libc.so.6 #1 0x00005555555593d2 in config_get_keyboard (config=0x555555774f80, device=0x555555775768) at ../rootston/config.c:443 #2 0x000055555555d7e3 in keyboard_add (device=0x555555775768, input=0x555555e96d70) at ../rootston/keyboard.c:206 #3 0x000055555555ca39 in input_add_notify (listener=0x555555e96fa8, data=0x555555775768) at ../rootston/input.c:34 #4 0x00007ffff7ba2b80 in wl_signal_emit (signal=0x5555557754f8, data=0x555555775768) at /usr/include/wayland-server-core.h:388 #5 0x00007ffff7ba37e0 in wlr_x11_backend_start (backend=0x5555557754f0) at ../backend/x11/backend.c:286 #6 0x00007ffff7b9372d in wlr_backend_start (backend=0x5555557754f0) at ../backend/backend.c:29 #7 0x000055555555dcc0 in main (argc=1, argv=0x7fffffffe408) at ../rootston/main.c:39 | |||
2017-11-01 | Re-enable hardware cursors | emersion | |
2017-11-01 | Apply output transformation to pointer events in Wayland backend | emersion | |
2017-10-31 | Merge pull request #352 from emersion/output-cursor | Tony Crisci | |
Add wlr_output_cursor | |||
2017-10-31 | Merge pull request #363 from acrisci/feature/grab-tweaks | Drew DeVault | |
Input grab tweaks and fixes | |||
2017-10-31 | Make wlr_output_interface.enable optional | emersion | |
2017-10-31 | Assert mandatory impl fields in wlr_output_init | emersion | |
2017-10-31 | Fix segfaults on exit in examples/mutli-pointer | emersion | |
2017-10-31 | Fix memory leak in wlr_cursor | emersion | |
2017-10-31 | Destroy x11 output with backend | emersion | |
2017-10-31 | Fix output_cursor_render bounds check | emersion | |
2017-10-31 | rootston: end grab on escape | Tony Crisci | |
2017-10-31 | Do not render off-screen software cursors | emersion | |
2017-10-31 | Emit add event after configuring wlr_output_layout_output | emersion | |
2017-10-31 | Remove outdated TODOs, use wlr_surface_has_buffer | emersion | |
2017-10-31 | Fix wlr_cursor_destroy, handle device remove in examples/multi-cursor | emersion | |
2017-10-31 | Add multi-pointer example | emersion | |
2017-10-31 | Fix cursor hotspot with rotated outputs on DRM backend | emersion | |
2017-10-31 | Remove wlr_cursor_set_xcursor for now | emersion | |
2017-10-31 | Transform cursor hotspot, fix wayland cursor hotspot | emersion | |
2017-10-31 | Transform cursor hotspot | emersion | |
2017-10-31 | Manage wlr_output_cursor from wlr_cursor | emersion | |
2017-10-31 | Fix rootston | emersion | |
2017-10-31 | Add wlr_output_cursor | emersion | |
2017-10-31 | Merge pull request #361 from emersion/output-layout-checked-allocs | Tony Crisci | |
Check allocation errors in wlr_output_layout | |||
2017-10-31 | Merge pull request #362 from emersion/types-allocs-and-style | Tony Crisci | |
Fix remaining unchecked allocs in types and code style | |||
2017-10-31 | Fix code style issues | emersion | |
2017-10-31 | Fix remaining unchecked allocs in types and code style | emersion | |
2017-10-31 | Check allocation errors in wlr_output_layout | emersion | |
2017-10-30 | Merge pull request #360 from acrisci/bug/x11-output-free | Drew DeVault | |
bug: free x11 backend output in destroy | |||
2017-10-30 | bug: free x11 backend output in destroy | Tony Crisci | |
2017-10-30 | Merge pull request #358 from acrisci/refactor/sec-to-msec | Drew DeVault | |
refactor input time_sec to time_msec | |||
2017-10-30 | remove time usec | Tony Crisci | |
2017-10-30 | Merge pull request #359 from acrisci/refactor/seat-handle-to-client | Drew DeVault | |
Rename wlr_seat_handle to wlr_seat_client | |||
2017-10-30 | rename wlr_seat to seat on seat structs | Tony Crisci | |