mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-25 22:25:58 +01:00
render: use wlr_readonly_data_buffer in wlr_texture_from_pixels
This commit is contained in:
parent
7ec66a9990
commit
29c8df7e0a
1 changed files with 16 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <wlr/render/interface.h>
|
#include <wlr/render/interface.h>
|
||||||
#include <wlr/render/wlr_texture.h>
|
#include <wlr/render/wlr_texture.h>
|
||||||
|
#include "types/wlr_buffer.h"
|
||||||
#include "render/wlr_texture.h"
|
#include "render/wlr_texture.h"
|
||||||
|
|
||||||
void wlr_texture_init(struct wlr_texture *texture,
|
void wlr_texture_init(struct wlr_texture *texture,
|
||||||
|
@ -27,8 +28,21 @@ struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer,
|
||||||
assert(height > 0);
|
assert(height > 0);
|
||||||
assert(stride > 0);
|
assert(stride > 0);
|
||||||
assert(data);
|
assert(data);
|
||||||
return renderer->impl->texture_from_pixels(renderer, fmt, stride, width,
|
|
||||||
height, data);
|
struct wlr_readonly_data_buffer *buffer =
|
||||||
|
readonly_data_buffer_create(fmt, stride, width, height, data);
|
||||||
|
if (buffer == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_texture *texture =
|
||||||
|
wlr_texture_from_buffer(renderer, &buffer->base);
|
||||||
|
|
||||||
|
// By this point, the renderer should have locked the buffer if it still
|
||||||
|
// needs to access it in the future.
|
||||||
|
readonly_data_buffer_drop(buffer);
|
||||||
|
|
||||||
|
return texture;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
|
struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
|
||||||
|
|
Loading…
Reference in a new issue