diff options
| author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-08-28 21:40:03 -0500 | 
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-08-28 22:15:57 -0500 | 
| commit | 83e37820d778f935af0123d3b4bc0512265fbfac (patch) | |
| tree | c59e1db76d0d0f85e584d555436ff0fec3945dc6 /dwl.c | |
| parent | e0cc5b046c4061cc1f57118167b5542626e27ba3 (diff) | |
add support for the single pixel buffer protocol
Diffstat (limited to 'dwl.c')
| -rw-r--r-- | dwl.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -40,6 +40,7 @@  #include <wlr/types/wlr_screencopy_v1.h>  #include <wlr/types/wlr_seat.h>  #include <wlr/types/wlr_server_decoration.h> +#include <wlr/types/wlr_single_pixel_buffer_v1.h>  #include <wlr/types/wlr_subcompositor.h>  #include <wlr/types/wlr_viewporter.h>  #include <wlr/types/wlr_virtual_keyboard_v1.h> @@ -1949,6 +1950,7 @@ setup(void)  	wlr_gamma_control_manager_v1_create(dpy);  	wlr_primary_selection_v1_device_manager_create(dpy);  	wlr_viewporter_create(dpy); +	wlr_single_pixel_buffer_manager_v1_create(dpy);  	wlr_subcompositor_create(dpy);  	/* Initializes the interface used to implement urgency hints */ | 
