diff options
Diffstat (limited to 'backend/headless/output.c')
-rw-r--r-- | backend/headless/output.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 70182ea0..ba4a094e 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -5,7 +5,6 @@ #include <wlr/interfaces/wlr_output.h> #include <wlr/util/log.h> #include "backend/headless.h" -#include "util/defs.h" #include "util/signal.h" static EGLSurface egl_create_surface(struct wlr_egl *egl, unsigned int width, @@ -80,7 +79,6 @@ static const struct wlr_output_impl output_impl = { .swap_buffers = output_swap_buffers, }; -WLR_API bool wlr_output_is_headless(struct wlr_output *wlr_output) { return wlr_output->impl == &output_impl; } @@ -92,7 +90,6 @@ static int signal_frame(void *data) { return 0; } -WLR_API struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend, unsigned int width, unsigned int height) { struct wlr_headless_backend *backend = |