mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-03-09 05:34:22 -04:00
backend: replace get_buffer_caps hook with a struct field
Do the same as wlr_renderer: the supported buffer capabilities are static for the lifetime of the backend.
This commit is contained in:
parent
9fdffba170
commit
b908d865b1
14 changed files with 44 additions and 87 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#include <assert.h>
|
||||
#include <backend/backend.h>
|
||||
#include <drm_fourcc.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/backend.h>
|
||||
#include <wlr/interfaces/wlr_output.h>
|
||||
#include <wlr/render/allocator.h>
|
||||
#include <wlr/render/swapchain.h>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
#include <wlr/render/swapchain.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include <xf86drm.h>
|
||||
#include "backend/backend.h"
|
||||
#include "render/drm_format_set.h"
|
||||
#include "render/wlr_renderer.h"
|
||||
#include "render/pixel_format.h"
|
||||
|
|
@ -17,14 +16,11 @@ bool wlr_output_init_render(struct wlr_output *output,
|
|||
struct wlr_allocator *allocator, struct wlr_renderer *renderer) {
|
||||
assert(allocator != NULL && renderer != NULL);
|
||||
|
||||
uint32_t backend_caps = backend_get_buffer_caps(output->backend);
|
||||
uint32_t renderer_caps = renderer->render_buffer_caps;
|
||||
|
||||
if (!(backend_caps & allocator->buffer_caps)) {
|
||||
if (!(output->backend->buffer_caps & allocator->buffer_caps)) {
|
||||
wlr_log(WLR_ERROR, "output backend and allocator buffer capabilities "
|
||||
"don't match");
|
||||
return false;
|
||||
} else if (!(renderer_caps & allocator->buffer_caps)) {
|
||||
} else if (!(renderer->render_buffer_caps & allocator->buffer_caps)) {
|
||||
wlr_log(WLR_ERROR, "renderer and allocator buffer capabilities "
|
||||
"don't match");
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue