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>
|
|
|
|
|
2017-08-14 14:25:26 +02:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture,
|
2017-08-08 18:02:14 +02:00
|
|
|
struct wlr_texture_impl *impl) {
|
2017-08-14 14:25:26 +02:00
|
|
|
texture->impl = impl;
|
|
|
|
wl_signal_init(&texture->destroy_signal);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_texture_bind(struct wlr_texture *texture) {
|
2017-08-14 14:25:26 +02:00
|
|
|
texture->impl->bind(texture);
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_texture_upload_pixels(struct wlr_texture *texture, uint32_t format,
|
|
|
|
int stride, int width, int height, const unsigned char *pixels) {
|
2017-08-14 14:25:26 +02:00
|
|
|
return texture->impl->upload_pixels(texture, format, stride,
|
|
|
|
width, height, pixels);
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2017-08-10 04:17:40 +02:00
|
|
|
bool wlr_texture_update_pixels(struct wlr_texture *texture,
|
|
|
|
enum wl_shm_format format, int stride, int x, int y,
|
|
|
|
int width, int height, const unsigned char *pixels) {
|
2017-08-14 14:25:26 +02:00
|
|
|
return texture->impl->update_pixels(texture, format, stride, x, y,
|
|
|
|
width, height, pixels);
|
2017-08-10 04:17:40 +02:00
|
|
|
}
|
|
|
|
|
2017-08-08 18:02:14 +02:00
|
|
|
bool wlr_texture_upload_shm(struct wlr_texture *texture, uint32_t format,
|
|
|
|
struct wl_shm_buffer *shm) {
|
2017-08-14 14:25:26 +02:00
|
|
|
return texture->impl->upload_shm(texture, format, shm);
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2017-08-10 04:17:40 +02:00
|
|
|
bool wlr_texture_update_shm(struct wlr_texture *texture, uint32_t format,
|
|
|
|
int x, int y, int width, int height, struct wl_shm_buffer *shm) {
|
2017-08-14 14:25:26 +02:00
|
|
|
return texture->impl->update_shm(texture, format, x, y, width, height, shm);
|
2017-08-10 04:17:40 +02:00
|
|
|
}
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
bool wlr_texture_upload_drm(struct wlr_texture *texture,
|
|
|
|
struct wl_resource *drm_buffer) {
|
2017-08-14 14:25:26 +02:00
|
|
|
return texture->impl->upload_drm(texture, drm_buffer);
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
|
|
|
|
2017-10-01 08:22:47 +02:00
|
|
|
bool wlr_texture_upload_eglimage(struct wlr_texture *texture,
|
|
|
|
EGLImageKHR image, uint32_t width, uint32_t height) {
|
|
|
|
return texture->impl->upload_eglimage(texture, image, width, height);
|
|
|
|
}
|
|
|
|
|
2018-02-23 18:45:16 +01:00
|
|
|
bool wlr_texture_upload_dmabuf(struct wlr_texture *texture,
|
|
|
|
struct wl_resource *dmabuf_resource) {
|
|
|
|
return texture->impl->upload_dmabuf(texture, dmabuf_resource);
|
|
|
|
}
|
|
|
|
|
2017-08-08 18:02:14 +02:00
|
|
|
void wlr_texture_get_matrix(struct wlr_texture *texture,
|
2018-03-15 15:33:58 +01:00
|
|
|
float mat[static 9], const float projection[static 9], int x, int y) {
|
2018-03-15 11:10:56 +01:00
|
|
|
texture->impl->get_matrix(texture, mat, projection, x, y);
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
2017-08-14 19:28:59 +02:00
|
|
|
|
|
|
|
void wlr_texture_get_buffer_size(struct wlr_texture *texture, struct wl_resource
|
|
|
|
*resource, int *width, int *height) {
|
|
|
|
texture->impl->get_buffer_size(texture, resource, width, height);
|
|
|
|
}
|