aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/backend/wayland.h
AgeCommit message (Collapse)Author
2022-05-25Reformat doc commentsSimon Ser
Unify the way we document our APIs. See CONTRIBUTING.md for the rules.
2022-03-07types/wlr_input_device: move init and finish function to private APISimon Zeni
2020-12-30Remove wlr_create_renderer_func_tSimon Ser
This callback allowed compositors to customize the EGL config used by the renderer. However with renderer v6 EGL configs aren't used anymore. Instead, buffers are allocated via GBM and GL FBOs are rendered to. So customizing the EGL config is a no-op.
2019-11-13backend/wayland: expose remote objectsSimon Ser
Expose the remote wl_display, wl_surface and wl_seat used by the Wayland backend. This allows compositors to customize the Wayland backend and to have more freedom. For instance a compositor might want to handle clipboard and drag-and-drop from the remote Wayland compositor. Another compositor might want to setup pointer constraints.
2019-07-27Remove all wayland-server.h includesSimon Ser
The documentation for wayland-server.h says: > Use of this header file is discouraged. Prefer including > wayland-server-core.h instead, which does not include the server protocol > header and as such only defines the library PI, excluding the deprecated API > below. Replacing wayland-server.h with wayland-server-core.h allows us to drop the WL_HIDE_DEPRECATED declaration.
2019-01-10Add wlr_wl_output_set_titleDrew DeVault
2018-05-25backends: implement custom EGL and renderer initializationIlia Bozhinov
Compositors now have more control over how the backend creates its renderer. Currently all backends create an EGL/GLES2 renderer, so the necessary attributes for creating the context are passed to a user-provided callback function. It is responsible for initializing provided wlr_egl and to return a renderer. On fail, return 0. Fixes #987
2018-04-29backend/wayland: create one virtual pointer per outputemersion
2018-02-12Reformat all #include directivesemersion
2018-01-13Update comment for wlr_headless_backend_createMarkus Ongyerth
2018-01-13adds remote argument to wayland backend createMarkus 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-19wl backend: add wlr_input_device_is_wlDominique Martinet
2017-12-19wl backend: add wlr_output_is_wlDominique Martinet
2017-06-20Support multiple wl backend outputsDrew DeVault
2017-06-19Start to fix wayland backendnyorain
Starts to update the wayland backend to the new backend api. Not yet updated to libinput branch (not yet compiling).
2017-04-25Flesh out wayland backend somewhat, add exampleDrew DeVault