Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-18 | backend/drm: don't hardcode matrix | emersion | |
2018-03-15 | matrix: rename wlr_matrix_texture to wlr_matrix_projection | emersion | |
2018-03-15 | renderer: replace wlr_texture_get_matrix by wlr_render_texture | emersion | |
2018-03-15 | matrix: use 2D matrices | emersion | |
2018-03-15 | matrix: unify API, don't use array pointers | emersion | |
2018-03-15 | matrix: move to types/ | emersion | |
2018-03-12 | Merge pull request #716 from emersion/fix-cursor-hotspot-update | Tony Crisci | |
Fix cursor hotspot update | |||
2018-03-12 | backend/drm: fix cursor hotspot not updated | emersion | |
2018-03-12 | Merge pull request #710 from emersion/dont-move-hidden-cursors | emersion | |
output: don't move hidden cursors | |||
2018-03-11 | backend/drm: refactor wlr_drm_connector_set_cursor | emersion | |
2018-03-07 | Add mode support to libinput backend | Drew DeVault | |
And extend tablet example with tilt and ring support | |||
2018-03-06 | Add const to x11 and input interfaces | Scott Anderson | |
2018-03-06 | Use xcb atoms properly | Scott Anderson | |
2018-03-01 | prevent current_mode null on output_enable(false) | Markus Ongyerth | |
The current mode was set to NULL to abuse it as state variable persisting DRM suspend/resume, this results resulted in a segfault on normal DPMS cycle. This reverts that change and uses the wlr_output enabled variable, which also persists and makes more sense. | |||
2018-02-26 | restore dpms state on drm resume | Markus Ongyerth | |
If there is no current mode, set outputs to dpms off in drm resume. Sets current mode to null on disable to ensure this can be checked. | |||
2018-02-25 | Merge pull request #659 from agx/alpha | Drew DeVault | |
Make wlr_render_with_matrix use alpha | |||
2018-02-25 | Add alpha to wlr_render_with_matrix | Guido Günther | |
so we can use the alpha channel to e.g. blend in textures | |||
2018-02-25 | Merge pull request #669 from acrisci/headless-output-frame-timer | Drew DeVault | |
destroy frame timer in headless output | |||
2018-02-24 | remove frame timer from headless output | Tony Crisci | |
2018-02-25 | Fix null deref in wlr_libinput_backend_destroy | Dan Robertson | |
If input_event is null (e.g. if backend_start has not been called yet) wl_event_source_remove will result in a null deref. | |||
2018-02-24 | Merge pull request #657 from emersion/wl-backend-uninitialized-field | Tony Crisci | |
backend/wayland: fix uninitialized wlr_event_keyboard_key::update_state | |||
2018-02-23 | x11: parse vendor and model out of xcb setup information | Guido Günther | |
2018-02-23 | backend/wayland: fix uninitialized wlr_event_keyboard_key::update_state | emersion | |
2018-02-19 | Revert "ELF Visibility" | Drew DeVault | |
2018-02-18 | Merge pull request #647 from ascent12/elf_visibility | Drew DeVault | |
ELF Visibility | |||
2018-02-19 | Explicitly export EFL symbols | Scott Anderson | |
2018-02-18 | x11 backend: set window title | Guido Günther | |
This makes windows identifiable in the window list | |||
2018-02-19 | Remove usec_to_msec from public API | Scott Anderson | |
2018-02-14 | Add missing dependencies | Rodrigo Lourenço | |
2018-02-12 | Reformat all #include directives | emersion | |
2018-02-12 | Make wlr_signal_emit_safe private | emersion | |
2018-02-12 | Remove wlr_backend.events.{output_remove,device_remove} | emersion | |
2018-02-12 | Add wlr_signal_emit_safe | emersion | |
2018-02-10 | Merge pull request #618 from VincentVanlaer/atomic-gamma | Drew DeVault | |
Add atomic gamma control | |||
2018-02-10 | Merge pull request #623 from martinetd/mesonopt | Drew DeVault | |
Meson option enhancements | |||
2018-02-10 | meson build: only link with deps when required by options | Dominique Martinet | |
2018-02-10 | meson.build status: print actual build options in message | Dominique Martinet | |
We were printing the option intent (true by default for all), but some are disabled when a component is not found and this was not reflected. | |||
2018-02-10 | Fallback gamma on legacy if properties don't exist | Vincent Vanlaer | |
2018-02-09 | Swap buffers with damage | emersion | |
2018-02-09 | Use VLA instead of heap alloc | Vincent Vanlaer | |
2018-02-09 | Fix style | Vincent Vanlaer | |
2018-02-09 | Free gamma when property blob creation fails | Vincent Vanlaer | |
2018-02-09 | Set needs_swap on output when gamma changes | Vincent Vanlaer | |
2018-02-09 | Do not allow gamma control without a crtc | Vincent Vanlaer | |
2018-02-09 | Add atomic gamma lut size fetching | Vincent Vanlaer | |
Legacy gamma lut size now uses the new legacy_crtc member of wlr_drm_crtc. This was Previously doen using old_crtc in wlr_drm_connector, but since this refers to the crtc that was connected to the ouput, this could give the wrong result. | |||
2018-02-09 | Add atomic gamma setting | Vincent Vanlaer | |
2018-02-09 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-02-06 | prevents reuse of outdated wlr_output state | Markus Ongyerth | |
On the drm output the wlr_drm_connector structs are reused. This struct contains the wlr_output struct, which is reused as well. The old code kept modes/edid and output state persistent over hotplug. This nulls the relevant strings, reads newer edid data and removes old modes on unplug. | |||
2018-02-03 | Merge remote-tracking branch 'upstream/master' into output-damage | emersion | |
2018-02-02 | backend/drm: update output enabled property on modeset | emersion | |