2018-03-24 23:30:28 +01:00
|
|
|
#include <assert.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <wlr/render/interface.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_texture.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2017-08-14 14:25:26 +02:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture,
|
2018-03-20 19:14:33 +01:00
|
|
|
const struct wlr_texture_impl *impl) {
|
2018-03-24 23:30:28 +01:00
|
|
|
assert(impl->get_size);
|
|
|
|
assert(impl->write_pixels);
|
2017-08-14 14:25:26 +02:00
|
|
|
texture->impl = impl;
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_texture_destroy(struct wlr_texture *texture) {
|
2017-08-14 16:16:20 +02:00
|
|
|
if (texture && texture->impl && texture->impl->destroy) {
|
2017-08-14 14:25:26 +02:00
|
|
|
texture->impl->destroy(texture);
|
2017-08-14 16:16:20 +02:00
|
|
|
} else {
|
|
|
|
free(texture);
|
2017-08-14 14:25:26 +02:00
|
|
|
}
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer,
|
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
|
|
|
|
uint32_t height, const void *data) {
|
|
|
|
return renderer->impl->texture_from_pixels(renderer, wl_fmt, stride, width,
|
|
|
|
height, data);
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
|
|
|
|
struct wl_resource *data) {
|
|
|
|
if (!renderer->impl->texture_from_wl_drm) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return renderer->impl->texture_from_wl_drm(renderer, data);
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_dmabuf(struct wlr_renderer *renderer,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
2018-03-24 23:30:28 +01:00
|
|
|
if (!renderer->impl->texture_from_dmabuf) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return renderer->impl->texture_from_dmabuf(renderer, attribs);
|
2017-10-01 08:22:47 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
void wlr_texture_get_size(struct wlr_texture *texture, int *width,
|
|
|
|
int *height) {
|
|
|
|
return texture->impl->get_size(texture, width, height);
|
2018-02-23 18:45:16 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 00:35:33 +02:00
|
|
|
bool wlr_texture_is_opaque(struct wlr_texture *texture) {
|
|
|
|
if (!texture->impl->is_opaque) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return texture->impl->is_opaque(texture);
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
bool wlr_texture_write_pixels(struct wlr_texture *texture,
|
|
|
|
enum wl_shm_format wl_fmt, 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) {
|
|
|
|
return texture->impl->write_pixels(texture, wl_fmt, stride, width, height,
|
|
|
|
src_x, src_y, dst_x, dst_y, data);
|
2017-08-14 19:28:59 +02:00
|
|
|
}
|
2018-05-23 01:03:26 +02:00
|
|
|
|
|
|
|
bool wlr_texture_to_dmabuf(struct wlr_texture *texture,
|
2018-05-31 13:33:27 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
2018-05-23 01:03:26 +02:00
|
|
|
if (!texture->impl->to_dmabuf) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return texture->impl->to_dmabuf(texture, attribs);
|
|
|
|
}
|