diff --git a/include/types/wlr_output.h b/include/types/wlr_output.h index 30c3e45f..5f75eb60 100644 --- a/include/types/wlr_output.h +++ b/include/types/wlr_output.h @@ -6,8 +6,6 @@ void output_pending_resolution(struct wlr_output *output, const struct wlr_output_state *state, int *width, int *height); -bool output_is_direct_scanout(struct wlr_output *output, - struct wlr_buffer *buffer); struct wlr_drm_format *output_pick_format(struct wlr_output *output, const struct wlr_drm_format_set *display_formats, uint32_t format); diff --git a/types/output/render.c b/types/output/render.c index ed1afa4a..c33103da 100644 --- a/types/output/render.c +++ b/types/output/render.c @@ -242,18 +242,3 @@ uint32_t wlr_output_preferred_read_format(struct wlr_output *output) { return fmt; } - -bool output_is_direct_scanout(struct wlr_output *output, - struct wlr_buffer *buffer) { - if (output->swapchain == NULL) { - return true; - } - - for (size_t i = 0; i < WLR_SWAPCHAIN_CAP; i++) { - if (output->swapchain->slots[i].buffer == buffer) { - return false; - } - } - - return true; -}