Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-24 | prevent screenshot from resuing template array | Markus Ongyerth | |
The template array given to mkstemp was declared static. This reused the memory, which caused mkstemp to fail if backingfile is run more than once, because the array no longer contained the template syntax (which is forced to end in XXXXXX) but the previous file name. | |||
2018-02-23 | Don't use os_create_anonymous_file outside of wlroots | Guido Günther | |
Use a stripped down version for the backing file in the screenshot example. | |||
2018-02-15 | wayland protocol headers: use double-quote for includes | Dominique Martinet | |
These headers are not installed so we should look for these locally | |||
2018-02-12 | Remove wlr_backend.events.{output_remove,device_remove} | emersion | |
2018-02-03 | render: make wlr_renderer_clear take a float[4] for the color | emersion | |
2018-02-03 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-02-01 | fixes the off by one errors in examples/screenshot | Markus Ongyerth | |
The inverse loop iterations for the transformed outputs had an off by one error, iterating 1 based, not 0 based. This commit fixes that. | |||
2018-01-31 | handle the other transformations for screenshots | Markus Ongyerth | |
This handles all current transformations for outputs properly. This ensures an output is drawn in readable orientation/flipping no matter the actual transformations applied to it. | |||
2018-01-31 | fixes 90 degree rotation screenshots | Markus Ongyerth | |
This fixes the screenshot example application when an output is rotated by 90 degrees. Other tranformations are not taken into account yet. | |||
2018-01-29 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-01-23 | Backport screenshooter fixes from the renderer redesign v1 | emersion | |
This backports some changes to #319 to fix the screenshooter data format. This also adds wlr_backend_get_renderer which will be useful to support multiple renderers. | |||
2018-01-22 | render: add wlr_renderer_clear and wlr_renderer_scissor | emersion | |
2018-01-21 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-01-21 | style: include brackets for if/while/for, even if it's a single statement | Johannes Schramm | |
2018-01-21 | output: add damage tracking via buffer age | emersion | |
2018-01-19 | output: fix software cursors damage tracking | emersion | |
2018-01-15 | Merge pull request #567 from Timidger/example-logging | Drew DeVault | |
Fixed logging for examples | |||
2018-01-15 | Fixed logging for examples | Timidger | |
2018-01-15 | Merge pull request #549 from emersion/output-enabled | Drew DeVault | |
Add wlr_output::enabled | |||
2018-01-13 | Add example for idle protocol | Heghedus Razvan | |
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com> | |||
2018-01-06 | output: rename resolution event to mode | emersion | |
2017-12-31 | Fix views outside output layout | emersion | |
2017-12-28 | Don't destroy backend in compositor_fini | Timidger | |
This is already done after the changes in #504, and now just causes a segfault on closing the examples. | |||
2017-12-28 | Merge pull request #533 from martinetd/wl_array_add | Drew DeVault | |
ENOMEM checks: consistently check wl_array_add return | |||
2017-12-28 | style: fix sizeof() calls without parentheses | Dominique Martinet | |
2017-12-28 | Fixes for multiple outputs | emersion | |
* Fixes output positions in screenshots * Fixes Wayland backend pointer events when output layout doesn't start at (0, 0) | |||
2017-12-27 | config: Avoid clash with other config-headers | Björn Esser | |
2017-12-26 | config: Put all defines into config.h | Björn Esser | |
2017-12-12 | Update output layout when scale or transform changes | emersion | |
2017-11-30 | Moved os-compatibility and added header | Moritz | |
* Moved os-compatibility.c to util * Added header under util * Removed static since it isn't needed (i think so) * Adjusted meson.build to include lib_wlr Improved some codestyle * Added guard to os-compatibility.h * Fixed typo in include statment Adjusted Guard * Changed guard to _WLR_UTIL_OS_COMPATIBILITY | |||
2017-11-20 | Use wl_list for touch points in examples/ | emersion | |
2017-11-16 | rename touch slot to touch id | Tony Crisci | |
2017-11-11 | Add scale parameter to wlr_cursor_set_image | emersion | |
2017-11-11 | Fix unused-result error | Tancredi Orlando | |
2017-11-01 | Move shared example code | Drew DeVault | |
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 | 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 | Remove wlr_cursor_set_xcursor for now | emersion | |
2017-10-31 | Manage wlr_output_cursor from wlr_cursor | emersion | |
2017-10-31 | Fix rootston | emersion | |
2017-10-30 | remove time usec | Tony Crisci | |
2017-10-22 | Fixes #321, not using result of wl_container_of | Timidger | |
2017-10-22 | Create globals only for enabled outputs in DRM backend | emersion | |
2017-10-22 | Forgot to rename these | Drew DeVault | |
2017-10-21 | Merge branch 'master' into heghe/wl_list | Drew DeVault | |
2017-10-21 | Rename remaining refs to wlr_list | Drew DeVault | |
2017-10-21 | Remove wl_list_init when using wl_signal_add | emersion | |