Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-19 | Revert "ELF Visibility" | Drew DeVault | |
2018-02-19 | Explicitly export EFL symbols | Scott Anderson | |
2018-02-19 | Remove usec_to_msec from public API | Scott Anderson | |
2018-02-12 | Reformat all #include directives | emersion | |
2018-02-12 | Remove wlr_backend.events.{output_remove,device_remove} | emersion | |
2018-01-30 | backend: fix use-after-free when destroying backends | emersion | |
The backend destroy signal is emitted before the output_remove signal is. When the destroy signal is emitted listeners remove their output_remove listener, so the output_remove signal is never received and listeners have an invalid output pointer. The correct way to solve this would be to remove the output_remove signal completely and use the wlr_output.events.destroy signal instead. This isn't yet possible because wl_signal_emit is unsafe and listeners cannot be removed in listeners. | |||
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-13 | adds remote argument to wayland backend create | Markus Ongyerth | |
Add a remote display name argument to wlr_wl_backend_create. If NULL is passed to the wayland backend at all times, creating a wayland backend *after* the compositor was started up, would require changing the WAYLAND_DISPLAY environment variable. | |||
2017-12-21 | only add first backend to multi autocreate | Tony Crisci | |
2017-12-21 | autocreate backend returns null instead of empty | Tony Crisci | |
2017-12-19 | always return multibakend from autocreate | Tony Crisci | |
2017-12-19 | remove session from multibackend | Tony Crisci | |
2017-12-19 | add backend destroy event | Tony Crisci | |
2017-12-19 | Destroy multi backend on display destroy | emersion | |
2017-10-30 | remove time usec | Tony Crisci | |
2017-10-01 | Multi-GPU DRM | Scott Anderson | |
2017-10-01 | Change wlr_session to open every GPU | Scott Anderson | |
2017-09-29 | Open X11 Window | Scott Anderson | |
2017-09-29 | Add X11 backend skeleton | 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-14 | impl->destroy cleanup: | Dominique Martinet | |
- remove trivial destroy() function - make sure we check impl and impl->destroy before calling - always call free if not implemented | |||
2017-08-13 | wlr_backend_init -> wlr_backend_start | Drew DeVault | |
Also renames create to init. We'll use create for anything that allocates and init for anything that takes a pointer and initializes it. | |||
2017-08-12 | Re-enable backend autoselection | Drew DeVault | |
2017-08-12 | Refactor out wlr_backend_state from wl/multi | Drew DeVault | |
2017-08-10 | Refactor EGL handling | Drew DeVault | |
2017-08-05 | Log that the X11 backend is unimplemented | Drew DeVault | |
2017-08-06 | Changed header paths. | Scott Anderson | |
2017-08-06 | Changed ownership of wlr_session to the multi backend. | Scott Anderson | |
Currently breaks VT switching for examples. | |||
2017-06-21 | Reorganize wlr-common | Drew DeVault | |
2017-06-20 | Support multiple wl backend outputs | Drew DeVault | |
2017-06-19 | Adapt codestyle | nyorain | |
2017-06-19 | Fix furhter wayland backend issues | nyorain | |
2017-06-13 | Establish multi backend support | Drew DeVault | |
2017-06-13 | Reassign ownership of libinput handle | Drew DeVault | |
2017-06-13 | Initialize keyboards from libinput | Drew DeVault | |
2017-06-13 | Add error handling and init in backend_autocreate | Drew DeVault | |
2017-06-12 | Fix some build errors | Drew DeVault | |
2017-06-04 | Refactor type implementations | Drew DeVault | |
2017-06-01 | Refactor udev and drm initialization | Drew DeVault | |
2017-05-31 | Clean up outputs on exit | Drew DeVault | |
2017-05-31 | Generalize DPMS, remove DRM refs from example | Drew DeVault | |
2017-05-07 | Generalize output handling | Drew DeVault | |
2017-05-07 | Refactor backend state management | Drew DeVault | |