├── .builds ├── alpine.yml ├── archlinux.yml └── freebsd.yml ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend ├── backend.c ├── drm │ ├── atomic.c │ ├── backend.c │ ├── cvt.c │ ├── drm.c │ ├── legacy.c │ ├── meson.build │ ├── monitor.c │ ├── properties.c │ ├── renderer.c │ └── util.c ├── headless │ ├── backend.c │ ├── meson.build │ └── output.c ├── libinput │ ├── backend.c │ ├── events.c │ ├── keyboard.c │ ├── meson.build │ ├── pointer.c │ ├── switch.c │ ├── tablet_pad.c │ ├── tablet_tool.c │ └── touch.c ├── meson.build ├── multi │ ├── backend.c │ └── meson.build ├── session │ ├── meson.build │ └── session.c ├── wayland │ ├── backend.c │ ├── meson.build │ ├── output.c │ ├── pointer.c │ ├── seat.c │ └── tablet_v2.c └── x11 │ ├── backend.c │ ├── input_device.c │ ├── meson.build │ └── output.c ├── docs └── env_vars.md ├── examples ├── .gitignore ├── cat.c ├── cat.h ├── dmabuf-capture.c ├── egl_common.c ├── egl_common.h ├── foreign-toplevel.c ├── fullscreen-shell.c ├── gamma-control.c ├── idle-inhibit.c ├── idle.c ├── input-inhibitor.c ├── input-method-keyboard-grab.c ├── input-method.c ├── keyboard-shortcuts-inhibit.c ├── layer-shell.c ├── meson.build ├── multi-pointer.c ├── output-layout.c ├── output-power-management.c ├── pointer-constraints.c ├── pointer.c ├── quads.c ├── relative-pointer-unstable-v1.c ├── rotation.c ├── scene-graph.c ├── screencopy-dmabuf.c ├── screencopy.c ├── simple.c ├── tablet.c ├── text-input.c ├── toplevel-decoration.c ├── touch.c └── virtual-pointer.c ├── include ├── backend │ ├── backend.h │ ├── drm │ │ ├── cvt.h │ │ ├── drm.h │ │ ├── iface.h │ │ ├── monitor.h │ │ ├── properties.h │ │ ├── renderer.h │ │ └── util.h │ ├── headless.h │ ├── libinput.h │ ├── multi.h │ ├── session │ │ └── session.h │ ├── wayland.h │ └── x11.h ├── interfaces │ └── wlr_input_device.h ├── meson.build ├── render │ ├── allocator │ │ ├── allocator.h │ │ ├── drm_dumb.h │ │ ├── gbm.h │ │ └── shm.h │ ├── drm_format_set.h │ ├── egl.h │ ├── eglstreams_allocator.h │ ├── gles2.h │ ├── pixel_format.h │ ├── pixman.h │ ├── swapchain.h │ ├── vulkan.h │ └── wlr_renderer.h ├── types │ ├── wlr_buffer.h │ ├── wlr_data_device.h │ ├── wlr_keyboard.h │ ├── wlr_matrix.h │ ├── wlr_output.h │ ├── wlr_region.h │ ├── wlr_scene.h │ ├── wlr_seat.h │ ├── wlr_tablet_v2.h │ └── wlr_xdg_shell.h ├── util │ ├── array.h │ ├── global.h │ ├── shm.h │ ├── signal.h │ ├── time.h │ └── token.h ├── wlr │ ├── backend.h │ ├── backend │ │ ├── drm.h │ │ ├── headless.h │ │ ├── interface.h │ │ ├── libinput.h │ │ ├── multi.h │ │ ├── session.h │ │ ├── wayland.h │ │ └── x11.h │ ├── config.h.in │ ├── interfaces │ │ ├── wlr_buffer.h │ │ ├── wlr_keyboard.h │ │ ├── wlr_output.h │ │ ├── wlr_pointer.h │ │ ├── wlr_switch.h │ │ ├── wlr_tablet_pad.h │ │ ├── wlr_tablet_tool.h │ │ └── wlr_touch.h │ ├── meson.build │ ├── render │ │ ├── allocator.h │ │ ├── dmabuf.h │ │ ├── drm_format_set.h │ │ ├── egl.h │ │ ├── gles2.h │ │ ├── interface.h │ │ ├── pixman.h │ │ ├── vulkan.h │ │ ├── wlr_renderer.h │ │ └── wlr_texture.h │ ├── types │ │ ├── wlr_buffer.h │ │ ├── wlr_compositor.h │ │ ├── wlr_cursor.h │ │ ├── wlr_damage_ring.h │ │ ├── wlr_data_control_v1.h │ │ ├── wlr_data_device.h │ │ ├── wlr_drm.h │ │ ├── wlr_drm_lease_v1.h │ │ ├── wlr_export_dmabuf_v1.h │ │ ├── wlr_foreign_toplevel_management_v1.h │ │ ├── wlr_fullscreen_shell_v1.h │ │ ├── wlr_gamma_control_v1.h │ │ ├── wlr_idle.h │ │ ├── wlr_idle_inhibit_v1.h │ │ ├── wlr_input_device.h │ │ ├── wlr_input_inhibitor.h │ │ ├── wlr_input_method_v2.h │ │ ├── wlr_keyboard.h │ │ ├── wlr_keyboard_group.h │ │ ├── wlr_keyboard_shortcuts_inhibit_v1.h │ │ ├── wlr_layer_shell_v1.h │ │ ├── wlr_linux_dmabuf_v1.h │ │ ├── wlr_matrix.h │ │ ├── wlr_output.h │ │ ├── wlr_output_damage.h │ │ ├── wlr_output_layout.h │ │ ├── wlr_output_management_v1.h │ │ ├── wlr_output_power_management_v1.h │ │ ├── wlr_pointer.h │ │ ├── wlr_pointer_constraints_v1.h │ │ ├── wlr_pointer_gestures_v1.h │ │ ├── wlr_presentation_time.h │ │ ├── wlr_primary_selection.h │ │ ├── wlr_primary_selection_v1.h │ │ ├── wlr_region.h │ │ ├── wlr_relative_pointer_v1.h │ │ ├── wlr_scene.h │ │ ├── wlr_screencopy_v1.h │ │ ├── wlr_seat.h │ │ ├── wlr_server_decoration.h │ │ ├── wlr_session_lock_v1.h │ │ ├── wlr_single_pixel_buffer_v1.h │ │ ├── wlr_subcompositor.h │ │ ├── wlr_surface.h │ │ ├── wlr_switch.h │ │ ├── wlr_tablet_pad.h │ │ ├── wlr_tablet_tool.h │ │ ├── wlr_tablet_v2.h │ │ ├── wlr_text_input_v3.h │ │ ├── wlr_touch.h │ │ ├── wlr_viewporter.h │ │ ├── wlr_virtual_keyboard_v1.h │ │ ├── wlr_virtual_pointer_v1.h │ │ ├── wlr_xcursor_manager.h │ │ ├── wlr_xdg_activation_v1.h │ │ ├── wlr_xdg_decoration_v1.h │ │ ├── wlr_xdg_foreign_registry.h │ │ ├── wlr_xdg_foreign_v1.h │ │ ├── wlr_xdg_foreign_v2.h │ │ ├── wlr_xdg_output_v1.h │ │ └── wlr_xdg_shell.h │ ├── util │ │ ├── addon.h │ │ ├── box.h │ │ ├── edges.h │ │ ├── log.h │ │ └── region.h │ ├── version.h.in │ ├── xcursor.h │ └── xwayland.h ├── xcursor │ ├── cursor_data.h │ └── xcursor.h └── xwayland │ ├── meson.build │ ├── selection.h │ └── xwm.h ├── meson.build ├── meson_options.txt ├── protocol ├── drm.xml ├── idle.xml ├── input-method-unstable-v2.xml ├── meson.build ├── server-decoration.xml ├── virtual-keyboard-unstable-v1.xml ├── wayland-eglstream-controller.xml ├── wlr-data-control-unstable-v1.xml ├── wlr-export-dmabuf-unstable-v1.xml ├── wlr-foreign-toplevel-management-unstable-v1.xml ├── wlr-gamma-control-unstable-v1.xml ├── wlr-input-inhibitor-unstable-v1.xml ├── wlr-layer-shell-unstable-v1.xml ├── wlr-output-management-unstable-v1.xml ├── wlr-output-power-management-unstable-v1.xml ├── wlr-screencopy-unstable-v1.xml ├── wlr-virtual-pointer-unstable-v1.xml └── xwayland-keyboard-grab-unstable-v1.xml ├── render ├── allocator │ ├── allocator.c │ ├── drm_dumb.c │ ├── gbm.c │ ├── meson.build │ └── shm.c ├── dmabuf.c ├── drm_format_set.c ├── egl.c ├── eglstreams_allocator.c ├── gles2 │ ├── meson.build │ ├── pixel_format.c │ ├── renderer.c │ ├── shaders.c │ └── texture.c ├── meson.build ├── pixel_format.c ├── pixman │ ├── meson.build │ ├── pixel_format.c │ └── renderer.c ├── swapchain.c ├── vulkan │ ├── meson.build │ ├── pixel_format.c │ ├── renderer.c │ ├── shaders │ │ ├── common.vert │ │ ├── meson.build │ │ ├── quad.frag │ │ └── texture.frag │ ├── texture.c │ ├── util.c │ └── vulkan.c ├── wlr_renderer.c └── wlr_texture.c ├── tinywl ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── meson.build └── tinywl.c ├── types ├── data_device │ ├── wlr_data_device.c │ ├── wlr_data_offer.c │ ├── wlr_data_source.c │ └── wlr_drag.c ├── meson.build ├── output │ ├── cursor.c │ ├── output.c │ ├── render.c │ ├── state.c │ └── transform.c ├── scene │ ├── layer_shell_v1.c │ ├── output_layout.c │ ├── subsurface_tree.c │ ├── surface.c │ ├── wlr_scene.c │ └── xdg_shell.c ├── seat │ ├── wlr_seat.c │ ├── wlr_seat_keyboard.c │ ├── wlr_seat_pointer.c │ └── wlr_seat_touch.c ├── tablet_v2 │ ├── wlr_tablet_v2.c │ ├── wlr_tablet_v2_pad.c │ ├── wlr_tablet_v2_tablet.c │ └── wlr_tablet_v2_tool.c ├── wlr_buffer.c ├── wlr_compositor.c ├── wlr_cursor.c ├── wlr_damage_ring.c ├── wlr_data_control_v1.c ├── wlr_drm.c ├── wlr_drm_lease_v1.c ├── wlr_export_dmabuf_v1.c ├── wlr_foreign_toplevel_management_v1.c ├── wlr_fullscreen_shell_v1.c ├── wlr_gamma_control_v1.c ├── wlr_idle.c ├── wlr_idle_inhibit_v1.c ├── wlr_input_device.c ├── wlr_input_inhibitor.c ├── wlr_input_method_v2.c ├── wlr_keyboard.c ├── wlr_keyboard_group.c ├── wlr_keyboard_shortcuts_inhibit_v1.c ├── wlr_layer_shell_v1.c ├── wlr_linux_dmabuf_v1.c ├── wlr_matrix.c ├── wlr_output_damage.c ├── wlr_output_layout.c ├── wlr_output_management_v1.c ├── wlr_output_power_management_v1.c ├── wlr_pointer.c ├── wlr_pointer_constraints_v1.c ├── wlr_pointer_gestures_v1.c ├── wlr_presentation_time.c ├── wlr_primary_selection.c ├── wlr_primary_selection_v1.c ├── wlr_region.c ├── wlr_relative_pointer_v1.c ├── wlr_screencopy_v1.c ├── wlr_server_decoration.c ├── wlr_session_lock_v1.c ├── wlr_single_pixel_buffer_v1.c ├── wlr_subcompositor.c ├── wlr_switch.c ├── wlr_tablet_pad.c ├── wlr_tablet_tool.c ├── wlr_text_input_v3.c ├── wlr_touch.c ├── wlr_viewporter.c ├── wlr_virtual_keyboard_v1.c ├── wlr_virtual_pointer_v1.c ├── wlr_xcursor_manager.c ├── wlr_xdg_activation_v1.c ├── wlr_xdg_decoration_v1.c ├── wlr_xdg_foreign_registry.c ├── wlr_xdg_foreign_v1.c ├── wlr_xdg_foreign_v2.c ├── wlr_xdg_output_v1.c └── xdg_shell │ ├── wlr_xdg_popup.c │ ├── wlr_xdg_positioner.c │ ├── wlr_xdg_shell.c │ ├── wlr_xdg_surface.c │ └── wlr_xdg_toplevel.c ├── util ├── addon.c ├── array.c ├── box.c ├── global.c ├── log.c ├── meson.build ├── region.c ├── shm.c ├── signal.c ├── time.c └── token.c ├── wlroots.syms ├── xcursor ├── meson.build ├── wlr_xcursor.c └── xcursor.c └── xwayland ├── meson.build ├── selection ├── dnd.c ├── incoming.c ├── outgoing.c └── selection.c ├── server.c ├── sockets.c ├── sockets.h ├── xwayland.c ├── xwayland_keyboard_grab_unstable.c ├── xwayland_keyboard_grab_unstable.h └── xwm.c /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/archlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.builds/archlinux.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/README.md -------------------------------------------------------------------------------- /backend/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/backend.c -------------------------------------------------------------------------------- /backend/drm/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/atomic.c -------------------------------------------------------------------------------- /backend/drm/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/backend.c -------------------------------------------------------------------------------- /backend/drm/cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/cvt.c -------------------------------------------------------------------------------- /backend/drm/drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/drm.c -------------------------------------------------------------------------------- /backend/drm/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/legacy.c -------------------------------------------------------------------------------- /backend/drm/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/meson.build -------------------------------------------------------------------------------- /backend/drm/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/monitor.c -------------------------------------------------------------------------------- /backend/drm/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/properties.c -------------------------------------------------------------------------------- /backend/drm/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/renderer.c -------------------------------------------------------------------------------- /backend/drm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/drm/util.c -------------------------------------------------------------------------------- /backend/headless/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/headless/backend.c -------------------------------------------------------------------------------- /backend/headless/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/headless/meson.build -------------------------------------------------------------------------------- /backend/headless/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/headless/output.c -------------------------------------------------------------------------------- /backend/libinput/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/backend.c -------------------------------------------------------------------------------- /backend/libinput/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/events.c -------------------------------------------------------------------------------- /backend/libinput/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/keyboard.c -------------------------------------------------------------------------------- /backend/libinput/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/meson.build -------------------------------------------------------------------------------- /backend/libinput/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/pointer.c -------------------------------------------------------------------------------- /backend/libinput/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/switch.c -------------------------------------------------------------------------------- /backend/libinput/tablet_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/tablet_pad.c -------------------------------------------------------------------------------- /backend/libinput/tablet_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/tablet_tool.c -------------------------------------------------------------------------------- /backend/libinput/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/libinput/touch.c -------------------------------------------------------------------------------- /backend/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/meson.build -------------------------------------------------------------------------------- /backend/multi/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/multi/backend.c -------------------------------------------------------------------------------- /backend/multi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/multi/meson.build -------------------------------------------------------------------------------- /backend/session/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/session/meson.build -------------------------------------------------------------------------------- /backend/session/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/session/session.c -------------------------------------------------------------------------------- /backend/wayland/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/backend.c -------------------------------------------------------------------------------- /backend/wayland/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/meson.build -------------------------------------------------------------------------------- /backend/wayland/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/output.c -------------------------------------------------------------------------------- /backend/wayland/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/pointer.c -------------------------------------------------------------------------------- /backend/wayland/seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/seat.c -------------------------------------------------------------------------------- /backend/wayland/tablet_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/wayland/tablet_v2.c -------------------------------------------------------------------------------- /backend/x11/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/x11/backend.c -------------------------------------------------------------------------------- /backend/x11/input_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/x11/input_device.c -------------------------------------------------------------------------------- /backend/x11/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/x11/meson.build -------------------------------------------------------------------------------- /backend/x11/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/backend/x11/output.c -------------------------------------------------------------------------------- /docs/env_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/docs/env_vars.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | /compositor/protocols 2 | -------------------------------------------------------------------------------- /examples/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/cat.c -------------------------------------------------------------------------------- /examples/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/cat.h -------------------------------------------------------------------------------- /examples/dmabuf-capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/dmabuf-capture.c -------------------------------------------------------------------------------- /examples/egl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/egl_common.c -------------------------------------------------------------------------------- /examples/egl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/egl_common.h -------------------------------------------------------------------------------- /examples/foreign-toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/foreign-toplevel.c -------------------------------------------------------------------------------- /examples/fullscreen-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/fullscreen-shell.c -------------------------------------------------------------------------------- /examples/gamma-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/gamma-control.c -------------------------------------------------------------------------------- /examples/idle-inhibit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/idle-inhibit.c -------------------------------------------------------------------------------- /examples/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/idle.c -------------------------------------------------------------------------------- /examples/input-inhibitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/input-inhibitor.c -------------------------------------------------------------------------------- /examples/input-method-keyboard-grab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/input-method-keyboard-grab.c -------------------------------------------------------------------------------- /examples/input-method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/input-method.c -------------------------------------------------------------------------------- /examples/keyboard-shortcuts-inhibit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/keyboard-shortcuts-inhibit.c -------------------------------------------------------------------------------- /examples/layer-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/layer-shell.c -------------------------------------------------------------------------------- /examples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/meson.build -------------------------------------------------------------------------------- /examples/multi-pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/multi-pointer.c -------------------------------------------------------------------------------- /examples/output-layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/output-layout.c -------------------------------------------------------------------------------- /examples/output-power-management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/output-power-management.c -------------------------------------------------------------------------------- /examples/pointer-constraints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/pointer-constraints.c -------------------------------------------------------------------------------- /examples/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/pointer.c -------------------------------------------------------------------------------- /examples/quads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/quads.c -------------------------------------------------------------------------------- /examples/relative-pointer-unstable-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/relative-pointer-unstable-v1.c -------------------------------------------------------------------------------- /examples/rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/rotation.c -------------------------------------------------------------------------------- /examples/scene-graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/scene-graph.c -------------------------------------------------------------------------------- /examples/screencopy-dmabuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/screencopy-dmabuf.c -------------------------------------------------------------------------------- /examples/screencopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/screencopy.c -------------------------------------------------------------------------------- /examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/simple.c -------------------------------------------------------------------------------- /examples/tablet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/tablet.c -------------------------------------------------------------------------------- /examples/text-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/text-input.c -------------------------------------------------------------------------------- /examples/toplevel-decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/toplevel-decoration.c -------------------------------------------------------------------------------- /examples/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/touch.c -------------------------------------------------------------------------------- /examples/virtual-pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/examples/virtual-pointer.c -------------------------------------------------------------------------------- /include/backend/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/backend.h -------------------------------------------------------------------------------- /include/backend/drm/cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/cvt.h -------------------------------------------------------------------------------- /include/backend/drm/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/drm.h -------------------------------------------------------------------------------- /include/backend/drm/iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/iface.h -------------------------------------------------------------------------------- /include/backend/drm/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/monitor.h -------------------------------------------------------------------------------- /include/backend/drm/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/properties.h -------------------------------------------------------------------------------- /include/backend/drm/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/renderer.h -------------------------------------------------------------------------------- /include/backend/drm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/drm/util.h -------------------------------------------------------------------------------- /include/backend/headless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/headless.h -------------------------------------------------------------------------------- /include/backend/libinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/libinput.h -------------------------------------------------------------------------------- /include/backend/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/multi.h -------------------------------------------------------------------------------- /include/backend/session/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/session/session.h -------------------------------------------------------------------------------- /include/backend/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/wayland.h -------------------------------------------------------------------------------- /include/backend/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/backend/x11.h -------------------------------------------------------------------------------- /include/interfaces/wlr_input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/interfaces/wlr_input_device.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/render/allocator/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/allocator/allocator.h -------------------------------------------------------------------------------- /include/render/allocator/drm_dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/allocator/drm_dumb.h -------------------------------------------------------------------------------- /include/render/allocator/gbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/allocator/gbm.h -------------------------------------------------------------------------------- /include/render/allocator/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/allocator/shm.h -------------------------------------------------------------------------------- /include/render/drm_format_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/drm_format_set.h -------------------------------------------------------------------------------- /include/render/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/egl.h -------------------------------------------------------------------------------- /include/render/eglstreams_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/eglstreams_allocator.h -------------------------------------------------------------------------------- /include/render/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/gles2.h -------------------------------------------------------------------------------- /include/render/pixel_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/pixel_format.h -------------------------------------------------------------------------------- /include/render/pixman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/pixman.h -------------------------------------------------------------------------------- /include/render/swapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/swapchain.h -------------------------------------------------------------------------------- /include/render/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/vulkan.h -------------------------------------------------------------------------------- /include/render/wlr_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/render/wlr_renderer.h -------------------------------------------------------------------------------- /include/types/wlr_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_buffer.h -------------------------------------------------------------------------------- /include/types/wlr_data_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_data_device.h -------------------------------------------------------------------------------- /include/types/wlr_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_keyboard.h -------------------------------------------------------------------------------- /include/types/wlr_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_matrix.h -------------------------------------------------------------------------------- /include/types/wlr_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_output.h -------------------------------------------------------------------------------- /include/types/wlr_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_region.h -------------------------------------------------------------------------------- /include/types/wlr_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_scene.h -------------------------------------------------------------------------------- /include/types/wlr_seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_seat.h -------------------------------------------------------------------------------- /include/types/wlr_tablet_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_tablet_v2.h -------------------------------------------------------------------------------- /include/types/wlr_xdg_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/types/wlr_xdg_shell.h -------------------------------------------------------------------------------- /include/util/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/array.h -------------------------------------------------------------------------------- /include/util/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/global.h -------------------------------------------------------------------------------- /include/util/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/shm.h -------------------------------------------------------------------------------- /include/util/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/signal.h -------------------------------------------------------------------------------- /include/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/time.h -------------------------------------------------------------------------------- /include/util/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/util/token.h -------------------------------------------------------------------------------- /include/wlr/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend.h -------------------------------------------------------------------------------- /include/wlr/backend/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/drm.h -------------------------------------------------------------------------------- /include/wlr/backend/headless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/headless.h -------------------------------------------------------------------------------- /include/wlr/backend/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/interface.h -------------------------------------------------------------------------------- /include/wlr/backend/libinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/libinput.h -------------------------------------------------------------------------------- /include/wlr/backend/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/multi.h -------------------------------------------------------------------------------- /include/wlr/backend/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/session.h -------------------------------------------------------------------------------- /include/wlr/backend/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/wayland.h -------------------------------------------------------------------------------- /include/wlr/backend/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/backend/x11.h -------------------------------------------------------------------------------- /include/wlr/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/config.h.in -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_buffer.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_keyboard.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_output.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_pointer.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_switch.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_tablet_pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_tablet_pad.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_tablet_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_tablet_tool.h -------------------------------------------------------------------------------- /include/wlr/interfaces/wlr_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/interfaces/wlr_touch.h -------------------------------------------------------------------------------- /include/wlr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/meson.build -------------------------------------------------------------------------------- /include/wlr/render/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/allocator.h -------------------------------------------------------------------------------- /include/wlr/render/dmabuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/dmabuf.h -------------------------------------------------------------------------------- /include/wlr/render/drm_format_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/drm_format_set.h -------------------------------------------------------------------------------- /include/wlr/render/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/egl.h -------------------------------------------------------------------------------- /include/wlr/render/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/gles2.h -------------------------------------------------------------------------------- /include/wlr/render/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/interface.h -------------------------------------------------------------------------------- /include/wlr/render/pixman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/pixman.h -------------------------------------------------------------------------------- /include/wlr/render/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/vulkan.h -------------------------------------------------------------------------------- /include/wlr/render/wlr_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/wlr_renderer.h -------------------------------------------------------------------------------- /include/wlr/render/wlr_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/render/wlr_texture.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_buffer.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_compositor.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_cursor.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_damage_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_damage_ring.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_data_control_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_data_control_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_data_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_data_device.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_drm.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_drm_lease_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_drm_lease_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_export_dmabuf_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_export_dmabuf_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_foreign_toplevel_management_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_foreign_toplevel_management_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_fullscreen_shell_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_fullscreen_shell_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_gamma_control_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_gamma_control_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_idle.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_idle_inhibit_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_idle_inhibit_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_input_device.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_input_inhibitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_input_inhibitor.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_input_method_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_input_method_v2.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_keyboard.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_keyboard_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_keyboard_group.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_keyboard_shortcuts_inhibit_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_keyboard_shortcuts_inhibit_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_layer_shell_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_layer_shell_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_linux_dmabuf_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_linux_dmabuf_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_matrix.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_output.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_output_damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_output_damage.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_output_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_output_layout.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_output_management_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_output_management_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_output_power_management_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_output_power_management_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_pointer.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_pointer_constraints_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_pointer_constraints_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_pointer_gestures_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_pointer_gestures_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_presentation_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_presentation_time.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_primary_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_primary_selection.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_primary_selection_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_primary_selection_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_region.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_relative_pointer_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_relative_pointer_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_scene.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_screencopy_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_screencopy_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_seat.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_server_decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_server_decoration.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_session_lock_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_session_lock_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_single_pixel_buffer_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_single_pixel_buffer_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_subcompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_subcompositor.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_surface.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_switch.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_tablet_pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_tablet_pad.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_tablet_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_tablet_tool.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_tablet_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_tablet_v2.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_text_input_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_text_input_v3.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_touch.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_viewporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_viewporter.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_virtual_keyboard_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_virtual_keyboard_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_virtual_pointer_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_virtual_pointer_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xcursor_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xcursor_manager.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_activation_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_activation_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_decoration_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_decoration_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_foreign_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_foreign_registry.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_foreign_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_foreign_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_foreign_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_foreign_v2.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_output_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_output_v1.h -------------------------------------------------------------------------------- /include/wlr/types/wlr_xdg_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/types/wlr_xdg_shell.h -------------------------------------------------------------------------------- /include/wlr/util/addon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/util/addon.h -------------------------------------------------------------------------------- /include/wlr/util/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/util/box.h -------------------------------------------------------------------------------- /include/wlr/util/edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/util/edges.h -------------------------------------------------------------------------------- /include/wlr/util/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/util/log.h -------------------------------------------------------------------------------- /include/wlr/util/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/util/region.h -------------------------------------------------------------------------------- /include/wlr/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/version.h.in -------------------------------------------------------------------------------- /include/wlr/xcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/xcursor.h -------------------------------------------------------------------------------- /include/wlr/xwayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/wlr/xwayland.h -------------------------------------------------------------------------------- /include/xcursor/cursor_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/xcursor/cursor_data.h -------------------------------------------------------------------------------- /include/xcursor/xcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/xcursor/xcursor.h -------------------------------------------------------------------------------- /include/xwayland/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/xwayland/meson.build -------------------------------------------------------------------------------- /include/xwayland/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/xwayland/selection.h -------------------------------------------------------------------------------- /include/xwayland/xwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/include/xwayland/xwm.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/meson_options.txt -------------------------------------------------------------------------------- /protocol/drm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/drm.xml -------------------------------------------------------------------------------- /protocol/idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/idle.xml -------------------------------------------------------------------------------- /protocol/input-method-unstable-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/input-method-unstable-v2.xml -------------------------------------------------------------------------------- /protocol/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/meson.build -------------------------------------------------------------------------------- /protocol/server-decoration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/server-decoration.xml -------------------------------------------------------------------------------- /protocol/virtual-keyboard-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/virtual-keyboard-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wayland-eglstream-controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wayland-eglstream-controller.xml -------------------------------------------------------------------------------- /protocol/wlr-data-control-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-data-control-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-export-dmabuf-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-export-dmabuf-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-gamma-control-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-gamma-control-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-input-inhibitor-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-input-inhibitor-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-output-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-output-management-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-output-power-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-output-power-management-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-screencopy-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-screencopy-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/wlr-virtual-pointer-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/wlr-virtual-pointer-unstable-v1.xml -------------------------------------------------------------------------------- /protocol/xwayland-keyboard-grab-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/protocol/xwayland-keyboard-grab-unstable-v1.xml -------------------------------------------------------------------------------- /render/allocator/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/allocator/allocator.c -------------------------------------------------------------------------------- /render/allocator/drm_dumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/allocator/drm_dumb.c -------------------------------------------------------------------------------- /render/allocator/gbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/allocator/gbm.c -------------------------------------------------------------------------------- /render/allocator/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/allocator/meson.build -------------------------------------------------------------------------------- /render/allocator/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/allocator/shm.c -------------------------------------------------------------------------------- /render/dmabuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/dmabuf.c -------------------------------------------------------------------------------- /render/drm_format_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/drm_format_set.c -------------------------------------------------------------------------------- /render/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/egl.c -------------------------------------------------------------------------------- /render/eglstreams_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/eglstreams_allocator.c -------------------------------------------------------------------------------- /render/gles2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/gles2/meson.build -------------------------------------------------------------------------------- /render/gles2/pixel_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/gles2/pixel_format.c -------------------------------------------------------------------------------- /render/gles2/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/gles2/renderer.c -------------------------------------------------------------------------------- /render/gles2/shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/gles2/shaders.c -------------------------------------------------------------------------------- /render/gles2/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/gles2/texture.c -------------------------------------------------------------------------------- /render/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/meson.build -------------------------------------------------------------------------------- /render/pixel_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/pixel_format.c -------------------------------------------------------------------------------- /render/pixman/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/pixman/meson.build -------------------------------------------------------------------------------- /render/pixman/pixel_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/pixman/pixel_format.c -------------------------------------------------------------------------------- /render/pixman/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/pixman/renderer.c -------------------------------------------------------------------------------- /render/swapchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/swapchain.c -------------------------------------------------------------------------------- /render/vulkan/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/meson.build -------------------------------------------------------------------------------- /render/vulkan/pixel_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/pixel_format.c -------------------------------------------------------------------------------- /render/vulkan/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/renderer.c -------------------------------------------------------------------------------- /render/vulkan/shaders/common.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/shaders/common.vert -------------------------------------------------------------------------------- /render/vulkan/shaders/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/shaders/meson.build -------------------------------------------------------------------------------- /render/vulkan/shaders/quad.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/shaders/quad.frag -------------------------------------------------------------------------------- /render/vulkan/shaders/texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/shaders/texture.frag -------------------------------------------------------------------------------- /render/vulkan/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/texture.c -------------------------------------------------------------------------------- /render/vulkan/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/util.c -------------------------------------------------------------------------------- /render/vulkan/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/vulkan/vulkan.c -------------------------------------------------------------------------------- /render/wlr_renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/wlr_renderer.c -------------------------------------------------------------------------------- /render/wlr_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/render/wlr_texture.c -------------------------------------------------------------------------------- /tinywl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/.gitignore -------------------------------------------------------------------------------- /tinywl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/LICENSE -------------------------------------------------------------------------------- /tinywl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/Makefile -------------------------------------------------------------------------------- /tinywl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/README.md -------------------------------------------------------------------------------- /tinywl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/meson.build -------------------------------------------------------------------------------- /tinywl/tinywl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/tinywl/tinywl.c -------------------------------------------------------------------------------- /types/data_device/wlr_data_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/data_device/wlr_data_device.c -------------------------------------------------------------------------------- /types/data_device/wlr_data_offer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/data_device/wlr_data_offer.c -------------------------------------------------------------------------------- /types/data_device/wlr_data_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/data_device/wlr_data_source.c -------------------------------------------------------------------------------- /types/data_device/wlr_drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/data_device/wlr_drag.c -------------------------------------------------------------------------------- /types/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/meson.build -------------------------------------------------------------------------------- /types/output/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/output/cursor.c -------------------------------------------------------------------------------- /types/output/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/output/output.c -------------------------------------------------------------------------------- /types/output/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/output/render.c -------------------------------------------------------------------------------- /types/output/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/output/state.c -------------------------------------------------------------------------------- /types/output/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/output/transform.c -------------------------------------------------------------------------------- /types/scene/layer_shell_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/layer_shell_v1.c -------------------------------------------------------------------------------- /types/scene/output_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/output_layout.c -------------------------------------------------------------------------------- /types/scene/subsurface_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/subsurface_tree.c -------------------------------------------------------------------------------- /types/scene/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/surface.c -------------------------------------------------------------------------------- /types/scene/wlr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/wlr_scene.c -------------------------------------------------------------------------------- /types/scene/xdg_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/scene/xdg_shell.c -------------------------------------------------------------------------------- /types/seat/wlr_seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/seat/wlr_seat.c -------------------------------------------------------------------------------- /types/seat/wlr_seat_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/seat/wlr_seat_keyboard.c -------------------------------------------------------------------------------- /types/seat/wlr_seat_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/seat/wlr_seat_pointer.c -------------------------------------------------------------------------------- /types/seat/wlr_seat_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/seat/wlr_seat_touch.c -------------------------------------------------------------------------------- /types/tablet_v2/wlr_tablet_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/tablet_v2/wlr_tablet_v2.c -------------------------------------------------------------------------------- /types/tablet_v2/wlr_tablet_v2_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/tablet_v2/wlr_tablet_v2_pad.c -------------------------------------------------------------------------------- /types/tablet_v2/wlr_tablet_v2_tablet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/tablet_v2/wlr_tablet_v2_tablet.c -------------------------------------------------------------------------------- /types/tablet_v2/wlr_tablet_v2_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/tablet_v2/wlr_tablet_v2_tool.c -------------------------------------------------------------------------------- /types/wlr_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_buffer.c -------------------------------------------------------------------------------- /types/wlr_compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_compositor.c -------------------------------------------------------------------------------- /types/wlr_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_cursor.c -------------------------------------------------------------------------------- /types/wlr_damage_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_damage_ring.c -------------------------------------------------------------------------------- /types/wlr_data_control_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_data_control_v1.c -------------------------------------------------------------------------------- /types/wlr_drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_drm.c -------------------------------------------------------------------------------- /types/wlr_drm_lease_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_drm_lease_v1.c -------------------------------------------------------------------------------- /types/wlr_export_dmabuf_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_export_dmabuf_v1.c -------------------------------------------------------------------------------- /types/wlr_foreign_toplevel_management_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_foreign_toplevel_management_v1.c -------------------------------------------------------------------------------- /types/wlr_fullscreen_shell_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_fullscreen_shell_v1.c -------------------------------------------------------------------------------- /types/wlr_gamma_control_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_gamma_control_v1.c -------------------------------------------------------------------------------- /types/wlr_idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_idle.c -------------------------------------------------------------------------------- /types/wlr_idle_inhibit_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_idle_inhibit_v1.c -------------------------------------------------------------------------------- /types/wlr_input_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_input_device.c -------------------------------------------------------------------------------- /types/wlr_input_inhibitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_input_inhibitor.c -------------------------------------------------------------------------------- /types/wlr_input_method_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_input_method_v2.c -------------------------------------------------------------------------------- /types/wlr_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_keyboard.c -------------------------------------------------------------------------------- /types/wlr_keyboard_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_keyboard_group.c -------------------------------------------------------------------------------- /types/wlr_keyboard_shortcuts_inhibit_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_keyboard_shortcuts_inhibit_v1.c -------------------------------------------------------------------------------- /types/wlr_layer_shell_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_layer_shell_v1.c -------------------------------------------------------------------------------- /types/wlr_linux_dmabuf_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_linux_dmabuf_v1.c -------------------------------------------------------------------------------- /types/wlr_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_matrix.c -------------------------------------------------------------------------------- /types/wlr_output_damage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_output_damage.c -------------------------------------------------------------------------------- /types/wlr_output_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_output_layout.c -------------------------------------------------------------------------------- /types/wlr_output_management_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_output_management_v1.c -------------------------------------------------------------------------------- /types/wlr_output_power_management_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_output_power_management_v1.c -------------------------------------------------------------------------------- /types/wlr_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_pointer.c -------------------------------------------------------------------------------- /types/wlr_pointer_constraints_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_pointer_constraints_v1.c -------------------------------------------------------------------------------- /types/wlr_pointer_gestures_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_pointer_gestures_v1.c -------------------------------------------------------------------------------- /types/wlr_presentation_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_presentation_time.c -------------------------------------------------------------------------------- /types/wlr_primary_selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_primary_selection.c -------------------------------------------------------------------------------- /types/wlr_primary_selection_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_primary_selection_v1.c -------------------------------------------------------------------------------- /types/wlr_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_region.c -------------------------------------------------------------------------------- /types/wlr_relative_pointer_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_relative_pointer_v1.c -------------------------------------------------------------------------------- /types/wlr_screencopy_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_screencopy_v1.c -------------------------------------------------------------------------------- /types/wlr_server_decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_server_decoration.c -------------------------------------------------------------------------------- /types/wlr_session_lock_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_session_lock_v1.c -------------------------------------------------------------------------------- /types/wlr_single_pixel_buffer_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_single_pixel_buffer_v1.c -------------------------------------------------------------------------------- /types/wlr_subcompositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_subcompositor.c -------------------------------------------------------------------------------- /types/wlr_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_switch.c -------------------------------------------------------------------------------- /types/wlr_tablet_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_tablet_pad.c -------------------------------------------------------------------------------- /types/wlr_tablet_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_tablet_tool.c -------------------------------------------------------------------------------- /types/wlr_text_input_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_text_input_v3.c -------------------------------------------------------------------------------- /types/wlr_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_touch.c -------------------------------------------------------------------------------- /types/wlr_viewporter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_viewporter.c -------------------------------------------------------------------------------- /types/wlr_virtual_keyboard_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_virtual_keyboard_v1.c -------------------------------------------------------------------------------- /types/wlr_virtual_pointer_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_virtual_pointer_v1.c -------------------------------------------------------------------------------- /types/wlr_xcursor_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xcursor_manager.c -------------------------------------------------------------------------------- /types/wlr_xdg_activation_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_activation_v1.c -------------------------------------------------------------------------------- /types/wlr_xdg_decoration_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_decoration_v1.c -------------------------------------------------------------------------------- /types/wlr_xdg_foreign_registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_foreign_registry.c -------------------------------------------------------------------------------- /types/wlr_xdg_foreign_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_foreign_v1.c -------------------------------------------------------------------------------- /types/wlr_xdg_foreign_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_foreign_v2.c -------------------------------------------------------------------------------- /types/wlr_xdg_output_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/wlr_xdg_output_v1.c -------------------------------------------------------------------------------- /types/xdg_shell/wlr_xdg_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/xdg_shell/wlr_xdg_popup.c -------------------------------------------------------------------------------- /types/xdg_shell/wlr_xdg_positioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/xdg_shell/wlr_xdg_positioner.c -------------------------------------------------------------------------------- /types/xdg_shell/wlr_xdg_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/xdg_shell/wlr_xdg_shell.c -------------------------------------------------------------------------------- /types/xdg_shell/wlr_xdg_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/xdg_shell/wlr_xdg_surface.c -------------------------------------------------------------------------------- /types/xdg_shell/wlr_xdg_toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/types/xdg_shell/wlr_xdg_toplevel.c -------------------------------------------------------------------------------- /util/addon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/addon.c -------------------------------------------------------------------------------- /util/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/array.c -------------------------------------------------------------------------------- /util/box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/box.c -------------------------------------------------------------------------------- /util/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/global.c -------------------------------------------------------------------------------- /util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/log.c -------------------------------------------------------------------------------- /util/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/meson.build -------------------------------------------------------------------------------- /util/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/region.c -------------------------------------------------------------------------------- /util/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/shm.c -------------------------------------------------------------------------------- /util/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/signal.c -------------------------------------------------------------------------------- /util/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/time.c -------------------------------------------------------------------------------- /util/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/util/token.c -------------------------------------------------------------------------------- /wlroots.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/wlroots.syms -------------------------------------------------------------------------------- /xcursor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xcursor/meson.build -------------------------------------------------------------------------------- /xcursor/wlr_xcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xcursor/wlr_xcursor.c -------------------------------------------------------------------------------- /xcursor/xcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xcursor/xcursor.c -------------------------------------------------------------------------------- /xwayland/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/meson.build -------------------------------------------------------------------------------- /xwayland/selection/dnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/selection/dnd.c -------------------------------------------------------------------------------- /xwayland/selection/incoming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/selection/incoming.c -------------------------------------------------------------------------------- /xwayland/selection/outgoing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/selection/outgoing.c -------------------------------------------------------------------------------- /xwayland/selection/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/selection/selection.c -------------------------------------------------------------------------------- /xwayland/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/server.c -------------------------------------------------------------------------------- /xwayland/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/sockets.c -------------------------------------------------------------------------------- /xwayland/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/sockets.h -------------------------------------------------------------------------------- /xwayland/xwayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/xwayland.c -------------------------------------------------------------------------------- /xwayland/xwayland_keyboard_grab_unstable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/xwayland_keyboard_grab_unstable.c -------------------------------------------------------------------------------- /xwayland/xwayland_keyboard_grab_unstable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/xwayland_keyboard_grab_unstable.h -------------------------------------------------------------------------------- /xwayland/xwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danvd/wlroots-eglstreams/HEAD/xwayland/xwm.c --------------------------------------------------------------------------------