Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-30 | Refactor meson build files | Tony Crisci | |
Use tabs for indentation and break up function calls over 80 col. | |||
2017-08-29 | Merge pull request #120 from acrisci/feature/wlr-cursor | Drew DeVault | |
wlr_cursor | |||
2017-08-29 | bugfix: set cursor coords on warp_unchecked | Tony Crisci | |
2017-08-29 | handle empty config file | Tony Crisci | |
2017-08-29 | refactor wlr_output_layout_closest_point | Tony Crisci | |
2017-08-29 | refactor and rename wlr_geometry to wlr_box | Tony Crisci | |
2017-08-29 | rename wlr_cursor_init to wlr_cursor_create | Tony Crisci | |
2017-08-29 | wlr_cursor.c: fix formatting | Tony Crisci | |
2017-08-29 | wlr_output_layout.c: fix style | Tony Crisci | |
2017-08-29 | pointer.c: fix formatting | Tony Crisci | |
2017-08-29 | config fixes | Tony Crisci | |
2017-08-28 | Implement tablet_tool support in pointer example | Drew DeVault | |
2017-08-28 | fix memory errors | Tony Crisci | |
2017-08-28 | fix formatting in types/meson.build | Tony Crisci | |
2017-08-28 | handle input device destroy | Tony Crisci | |
2017-08-28 | implement tablet tool devices | Tony Crisci | |
2017-08-27 | refactor device mapping calculation | Tony Crisci | |
2017-08-27 | Merge pull request #124 from martinetd/xwayland_fixes | Drew DeVault | |
Xwayland double fork & leak fix | |||
2017-08-27 | implement touch up and touch down | Tony Crisci | |
2017-08-27 | xwayland: free xcb events | Dominique Martinet | |
2017-08-27 | Double-fork for xwayland execution | Dominique Martinet | |
The intermediate fork needs to wait for SIGUSR1 for when Xserver is ready, or SIGCHLD if the exec didn't work out. Also change the exit() to _exit() as that is apparently more appropriate for forks (and waitpid's status was wrong without it for some reason) Fixes #122. | |||
2017-08-27 | add device to touch events | Tony Crisci | |
2017-08-27 | add touch events | Tony Crisci | |
2017-08-26 | intersect cursor and device regions | Tony Crisci | |
2017-08-26 | config: fix uninitialized variables and accept trailing for geom | Tony Crisci | |
2017-08-26 | Merge pull request #123 from ascent12/session-multi-gpu | Drew DeVault | |
Session Multi-GPU | |||
2017-08-26 | implement cursor and device geometry mapping | Tony Crisci | |
2017-08-26 | add device configuration | Tony Crisci | |
2017-08-26 | add cursor configuration | Tony Crisci | |
2017-08-26 | add configuration file | Tony Crisci | |
2017-08-26 | refactor example config and add ini.c | Tony Crisci | |
2017-08-26 | implement wlr_cursor_map_input_to_output | Tony Crisci | |
2017-08-26 | implement wlr_cursor_map_to_output | Tony Crisci | |
2017-08-26 | change output layout coords to double type | Tony Crisci | |
2017-08-26 | assert cursor layout for move and warp functions | Tony Crisci | |
2017-08-26 | implement wlr_cursor_warp | Tony Crisci | |
2017-08-26 | handle cursor to output edge cases | Tony Crisci | |
2017-08-26 | smooth pointer transitioning between outputs | Tony Crisci | |
2017-08-26 | use safe for_each when freeing cursor devices | Tony Crisci | |
2017-08-26 | add wlr_cursor basic implementation | Tony Crisci | |
2017-08-26 | Remove __PRETTY_FUNCTION__ | Scott Anderson | |
This is pointlessly non-portable and completely equivilent to __func__ in C. | |||
2017-08-26 | Remove single GPU assumptions from wlr_session | Scott Anderson | |
2017-08-26 | Merge wlr_udev into wlr_session | Scott Anderson | |
2017-08-26 | Rename functions to be consistent with #93 | Scott Anderson | |
2017-08-24 | Merge pull request #119 from martinetd/xwayland | Drew DeVault | |
Xwayland | |||
2017-08-24 | xwayland: relinquish wl_fd[0] after creating client | Dominique Martinet | |
wayland WILL close this fd during wl_client_destroy, after our handler if we close it as well this will close some of the fd we reopened | |||
2017-08-24 | xwm: free x11 windows on finish | Dominique Martinet | |
2017-08-24 | xwayland: fix some shutdown cases | Dominique Martinet | |
2017-08-24 | xwayland: fix shutdown caused by Xwayland/client stop | Dominique Martinet | |
2017-08-23 | xwm: remove xcb-util dependency | Dominique Martinet | |
This hardcodes a define, but other projects (wlc/weston) either use the raw number or just redefine it with another name anyway... This should fix travis build. |