Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-05 | Merge pull request #1231 from ascent12/editorconfig | Drew DeVault | |
Remove indent_size from .editorconfig | |||
2018-09-05 | Remove indent_size from .editorconfig | Scott Anderson | |
Some of us like to use different indent sizes. | |||
2018-09-03 | Merge pull request #1213 from arandomhuman/wlr_log_get_verbosity | Drew DeVault | |
Add wlr_log_get_verbosity method | |||
2018-09-03 | Update wlr_log_init docs | random human | |
2018-09-03 | Add support for setting log verbosity in rootston | random human | |
2018-09-03 | Close stdout/stderr for Xwayland | random human | |
Depending on the log verbosity, close the stdout/stderr streams. | |||
2018-09-03 | Merge pull request #1226 from RyanDwyer/xwayland-set-role | emersion | |
xwayland: Introduce set_role event | |||
2018-09-03 | xwayland: Introduce set_role event | Ryan Dwyer | |
2018-09-03 | Merge pull request #1228 from arandomhuman/misc-mem | emersion | |
Miscellaneous memory leak fixes | |||
2018-09-03 | Remove listener link after tablet_manager destroy | random human | |
2018-09-03 | Release pointers in examples/multi-pointer | random human | |
2018-09-03 | Release registry pointer in examples/idle | random human | |
2018-09-03 | Destroy layout after display in examples/output-layout | random human | |
2018-09-03 | Call wl_global_create first in case of failure | random human | |
2018-09-03 | Handle setting keymap in examples more securely | random human | |
2018-09-02 | fix incorrect NULL check | cnt0 | |
2018-09-02 | Free unused pointer in x11/backend.c | random human | |
2018-09-02 | backend/drm: fix invalid VLA size in scan_drm_connectors | emersion | |
I failed to see this issue with Valgrind because of the +1. | |||
2018-09-02 | Init dmabuf global in renderer | emersion | |
2018-09-02 | xwayland: Introduce request_activate event | Ryan Dwyer | |
2018-09-02 | xwayland: Add WM_STATE modal property | Ryan Dwyer | |
Adds a modal property to indicate whether the surface wants to be a modal. | |||
2018-09-01 | Merge pull request #1220 from emersion/grouped-new-output | Drew DeVault | |
backend/drm: emit new_output after scanning connectors | |||
2018-09-02 | backend/drm: emit new_output after scanning connectors | emersion | |
This prevents receiving modesetting requests from the compositor while we don't have the whole picture (ie. while we haven't yet scanned all connectors). This also makes connectors without CRTCs disabled (they can't be enabled yet even if some CRTCs are free'd -- this is future work). | |||
2018-09-01 | Merge pull request #1219 from emersion/disable-when-needs-modeset | Drew DeVault | |
backend/drm: allow disabling outputs in NEEDS_MODESET state | |||
2018-09-01 | backend/drm: allow disabling outputs in NEEDS_MODESET state | emersion | |
This correctly frees CRTCs when disabling outputs without setting a mode. | |||
2018-09-01 | Merge pull request #1215 from emersion/disabled-no-modeset | Drew DeVault | |
Do not modeset disabled outputs | |||
2018-09-01 | Do not modeset disabled outputs | emersion | |
2018-09-01 | Add function wlr_log_get_verbosity() | random human | |
Returns the verbosity passed to wlr_log_init(). | |||
2018-09-01 | Merge pull request #1211 from aereaux/aereaux-patch-1 | Ryan Dwyer | |
Fix uninitialized value in wlr_cursor. | |||
2018-08-31 | Fix uninitialized value in wlr_cursor. | Aidan Epstein | |
2018-08-31 | Merge pull request #1210 from ammen99/fix-include | Drew DeVault | |
add missing wlr_box.h include in wlr_screencopy_v1.h | |||
2018-08-31 | add missing wlr_box.h include in wlr_screencopy_v1.h | Ilia Bozhinov | |
2018-08-31 | Add clang's static analyzer to build.yml | random human | |
2018-08-31 | Fix bugs listed by clang's static analyzer | random human | |
A few pedantic changes and unused variables (1-4), and genuine bugs (5, 6). The reports with the corresponding files and lines numbers are as follows. 1. backend/libinput/tablet_pad.c@31,44,57 "Allocator sizeof operand mismatch" "Result of 'calloc' is converted to a pointer of type 'unsigned int', which is incompatible with sizeof operand type 'int'" 2. types/tablet_v2/wlr_tablet_v2_pad.c@371 "Allocator sizeof operand mismatch" "Result of 'calloc' is converted to a pointer of type 'uint32_t', which is incompatible with sizeof operand type 'int'" 3. types/wlr_cursor.c@335 "Dead initialization" "Value stored to 'dx'/'dy' during its initialization is never read" 4. rootston/xdg_shell.c@510 "Dead initialization" "Value stored to 'desktop' during its initialization is never read" 5. types/tablet_v2/wlr_tablet_v2_pad.c@475 "Dereference of null pointer" "Access to field 'strips' results in a dereference of a null pointer (loaded from field 'current_client')" The boolean logic was incorrect (c.f. the check in the following function). 6. examples/idle.c@163,174,182 "Uninitialized argument value" "1st function call argument is an uninitialized value" If close_timeout != 0, but simulate_activity_timeout >= close_timeout, the program would segfault at pthread_cancel(t1). | |||
2018-08-30 | Merge pull request #1208 from arandomhuman/master | Drew DeVault | |
Fixes examples/dmabuf-capture being built with unmet dependencies | |||
2018-08-30 | Fixes examples/dmabuf-capture being built with unmet dependencies | random human | |
Even if the libav* variables were disabler objects, the build targer dmabuf-capture was being built. Modified the script to support a generic solution. | |||
2018-08-29 | Use legacy modesetting for gamma control | Drew DeVault | |
It doesn't look like there's any motion on a fix from the AMDGPU side, and using the legacy interface for this isn't so bad. | |||
2018-08-28 | Merge pull request #1196 from dcz-purism/surface_move | Brian Ashworth | |
rootston/surface_layers: fix clicking after surface moved | |||
2018-08-27 | Merge pull request #1202 from alexbakker/destroy-signal-fix | Drew DeVault | |
Init the new destroy signals added by #1200 | |||
2018-08-27 | Init the new destroy signals added by #1200 | Alexander Bakker | |
2018-08-27 | Merge pull request #1200 from alexbakker/destroy-signal | Drew DeVault | |
Add destroy signals to types that are destroyed by wl_display_destroy | |||
2018-08-26 | Add destroy signals to types that are destroyed by wl_display_destroy | Alexander Bakker | |
2018-08-25 | Merge pull request #1199 from apreiml/farthest_output | Brian Ashworth | |
introduce wlr_output_layout_farthest_output | |||
2018-08-25 | introduce wlr_output_layout_farthest_output | Armin Preiml | |
Similar to wlr_output_layout_adjacent_output but will return the one that is the farthest away from the reference in given direction. | |||
2018-08-24 | Update required meson version to 0.47.1 | Drew DeVault | |
2018-08-24 | Merge pull request #1198 from ascent12/meson_feature | Drew DeVault | |
Fix meson changes | |||
2018-08-24 | Change how glgen.sh outputs files | Scott Anderson | |
This fixes building wlroots as a subproject. | |||
2018-08-24 | Revert "Revert "Merge pull request #1194 from ascent12/meson_feature"" | Scott Anderson | |
This reverts commit 9c886f20b97b6ab1ac85b849f1fe7f16eb199ff0. | |||
2018-08-23 | Revert "Merge pull request #1194 from ascent12/meson_feature" | Drew DeVault | |
This breaks wlroots when used as a meson subproject. This reverts commit dea311992eb4ff3e343c3cf5b0603034223d2a42, reversing changes made to 6db9c4b74667c1d917d720f5e96985a2461569fb. | |||
2018-08-23 | Merge pull request #1194 from ascent12/meson_feature | Drew DeVault | |
Build system changes |