Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-09 | Use ftruncate to set shared memory object's size | sghctoma | |
The posix_fallocate function should only be used with regular files. | |||
2018-11-08 | Force ftruncate for shared mem. objects on FreeBSD | sghctoma | |
FreeBSD does not allow to use posix_fallocate on shared memory objects. | |||
2018-10-28 | util: use shm_open for in-memory files | emersion | |
shm_open is a POSIX function creating an in-memory file. Using it simplifies the code and removes the dependency on XDG_RUNTIME_DIR. The only downside is that we need to generate a random name for the shm file. | |||
2018-09-18 | Fix implicit conversion of floats to ints in calls to ↵ | Las | |
pixman_region32_contains_point I do not think the conversion is specifically defined, but on my system and SirCmpwn's the floats are rounded instead of floored, which is incorrect in this case, since for a range from 0 to 256, any value greater or equal to 0 and less than 256 is valid. I.e. [0;256[, or 0 <= x < 256, but if x is e.g. -0.1, then it will be rounded to 0, which is invalid. The correct behavior would be to floor to -1. | |||
2018-09-18 | Implement pointer-constraints protocol in wlroots and rootston | Las | |
2018-09-01 | Add function wlr_log_get_verbosity() | random human | |
Returns the verbosity passed to wlr_log_init(). | |||
2018-07-21 | util: include config in os-compatibility.c | emersion | |
2018-07-21 | Use posix_fallocate when available | emersion | |
2018-07-14 | Another round of feedback from acrisci | Markus Ongyerth | |
2018-07-09 | util: add wlr_ prefix to log symbols | emersion | |
2018-06-30 | util/create_tmpfile: set restrictive umask for these files | Dominique Martinet | |
Even if the file is removed right away, a race with someone using inotify is definitely possible, so play safe and restrict umask for our tmpfiles Found through static analysis. | |||
2018-04-25 | Remove wlr_ prefix from local symbols | emersion | |
2018-03-26 | Fix damage tracking for rotated surfaces | emersion | |
It was broken because the damage extents were rotated about its own center, not about the center of the surface. This adds a new wlr_region_rotated_bounds that rotates regions. This allows us to have only one code path (for both non-rotated views and rotated views) and optimizes rendering for rotated views. | |||
2018-02-21 | Rename _strip_path to wlr_strip_path | Guido Günther | |
since it's a public function | |||
2018-02-19 | Revert "ELF Visibility" | Drew DeVault | |
2018-02-19 | Explicitly export EFL symbols | Scott Anderson | |
2018-02-12 | Reformat all #include directives | emersion | |
2018-02-12 | Make wlr_signal_emit_safe private | emersion | |
2018-02-12 | Add wlr_signal_emit_safe | emersion | |
2018-01-30 | rootston: fix urxvt damage on HiDPI outputs | emersion | |
util/region: add wlr_region_expand | |||
2018-01-26 | Damage tracking for transformed outputs | emersion | |
2018-01-25 | rootston: damage tracking scale support | emersion | |
2017-12-31 | Allow configurable verbosity | Calvin Lee | |
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-10-21 | Rename remaining refs to wlr_list | Drew DeVault | |
2017-10-11 | Add FreeBSD compatibility | Greg V | |
2017-08-30 | Refactor meson build files | Tony Crisci | |
Use tabs for indentation and break up function calls over 80 col. | |||
2017-08-16 | Prevent alloc errors from crashing in `list_t` | Calvin Lee | |
This commit changes the `list_t` api so that alloc errors can be detected and worked around. Also fixes errors not found in 5cc7342 | |||
2017-08-15 | Merge pull request #88 from 4e554c4c/alloc_crashing | Drew DeVault | |
Prevent alloc errors from crashing | |||
2017-08-15 | Prevent alloc errors from crashing | Calvin Lee | |
Resolves #76 | |||
2017-08-14 | Fix style issues | nyorain | |
2017-08-13 | Fix #64 | Drew DeVault | |
2017-08-11 | Refactor meson and move xdg-shell into wlroots | Drew DeVault | |
2017-08-05 | Use meson build system | nyorain | |
2017-08-02 | Fix #40 | Drew DeVault | |
2017-07-11 | Revert "Merge pull request #27 from ascent12/meson" | Drew DeVault | |
This reverts commit 85805da021006697c85489c3e30717c2b807441c, reversing changes made to 8189c64d7f07a756abf5a6189719f02b2f1af967. | |||
2017-07-11 | Use subdir | Scott Anderson | |
2017-07-11 | Changed build system to meson | Scott Anderson | |
2017-06-21 | Utilize wlr_log in example logging | Drew DeVault | |
2017-06-21 | Reorganize wlr-common | Drew DeVault | |