From 05803511db6e786cbb25caf3f1818718f5c0ab2e Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 27 Apr 2020 12:49:24 +0200 Subject: [PATCH] render/texture: make write_pixels optional --- render/wlr_texture.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/render/wlr_texture.c b/render/wlr_texture.c index f6b6db89..b0b22565 100644 --- a/render/wlr_texture.c +++ b/render/wlr_texture.c @@ -6,7 +6,6 @@ void wlr_texture_init(struct wlr_texture *texture, const struct wlr_texture_impl *impl, uint32_t width, uint32_t height) { - assert(impl->write_pixels); texture->impl = impl; texture->width = width; texture->height = height; @@ -60,6 +59,9 @@ bool wlr_texture_write_pixels(struct wlr_texture *texture, uint32_t stride, uint32_t width, uint32_t height, uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y, const void *data) { + if (!texture->impl->write_pixels) { + return false; + } return texture->impl->write_pixels(texture, stride, width, height, src_x, src_y, dst_x, dst_y, data); }