Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-06 | Add set_gamma and get_gamma_size to wlr_output_impl | emersion | |
2017-09-06 | Add wlr_output_{set_gamma,get_gamma_size} | emersion | |
2017-09-06 | Add gamma_control skeleton | emersion | |
2017-09-05 | Rename wlr_output_layout_init() | Tony Crisci | |
Rename wlr_output_layout_init() to wlr_output_layout_create() to be consistent with the rest of the api. | |||
2017-09-05 | wlr_cursor: handle layout changes | Tony Crisci | |
Add the layout `destroy` and `change` events. When a layout is destroyed, detach is from the wlr_cursor. When a layout is changed, warp the cursor to the closest layout boundary. | |||
2017-08-31 | add wlr_output destroy event | Tony Crisci | |
2017-08-31 | implement output layout auto configuration | Tony Crisci | |
2017-08-29 | Merge pull request #120 from acrisci/feature/wlr-cursor | Drew DeVault | |
wlr_cursor | |||
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-28 | Implement tablet_tool support in pointer example | Drew DeVault | |
2017-08-28 | handle input device destroy | Tony Crisci | |
2017-08-28 | implement tablet tool devices | Tony Crisci | |
2017-08-27 | implement touch up and touch down | Tony Crisci | |
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 | implement cursor and device geometry mapping | 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 | implement wlr_cursor_warp | Tony Crisci | |
2017-08-26 | handle cursor to output edge cases | Tony Crisci | |
2017-08-26 | add wlr_cursor basic implementation | Tony Crisci | |
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 | xwayland: fix shutdown caused by Xwayland/client stop | Dominique Martinet | |
2017-08-23 | xwayland: fix style issues | Dominique Martinet | |
2017-08-23 | example compositor: loop through xwayland surfaces | Dominique Martinet | |
2017-08-23 | xwayland: move & split internal header file | Dominique Martinet | |
2017-08-23 | xwm: fix minimal init, this gets us some events on window creations | Dominique Martinet | |
2017-08-23 | init xwm only once Xwayland server is ready | Dominique Martinet | |
2017-08-23 | wlr_compositor: add signal for create_surface | Dominique Martinet | |
2017-08-23 | xwayland: split xwm structure out, initial xwm.c | Dominique Martinet | |
2017-08-23 | Xwayland: first draft, just start server for now | Dominique Martinet | |
2017-08-19 | wlr_compositor: change _init/finish to _create/destroy | Dominique Martinet | |
2017-08-19 | move wl_compositor into wlroots as wlr_compositor | Dominique Martinet | |
2017-08-19 | wlr renderer/texture: rename init to create when it does alloc | Dominique Martinet | |
2017-08-18 | rename wlr_cursor to wlr_xcursor | Tony Crisci | |
This is for the implementation of another type that should be called wlr_cursor. | |||
2017-08-18 | Implement wlr_data_{source,device,device_manager} | nyorain | |
2017-08-18 | Merge pull request #101 from nyorain/texture_fix | Drew DeVault | |
Fix surface buffer uploading | |||
2017-08-17 | Clean up wlr_output_layout | Drew DeVault | |
2017-08-17 | add helper methods for intersection | Tony Crisci | |
2017-08-17 | layout-output example: handle empty config | Tony Crisci | |
2017-08-17 | Add wlr_output_layout implementation | Tony Crisci | |
An output layout consists of a mapping of outputs to their position in a global coordinate system that usually cooresponds to the output position in physical space in front of the user. Add an example that allows configuration of an output layout and demonstrates its boundaries with a bouncing image. |