2018-03-24 18:30:28 -04: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>
|
2022-04-26 09:43:54 +02:00
|
|
|
#include <string.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>
|
2022-06-28 13:10:23 -04:00
|
|
|
#include <wlr/types/wlr_raster.h>
|
2021-06-29 20:11:53 +02:00
|
|
|
#include "types/wlr_buffer.h"
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2017-08-14 08:25:26 -04:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture,
|
2020-04-27 12:45:21 +02:00
|
|
|
const struct wlr_texture_impl *impl, uint32_t width, uint32_t height) {
|
2022-04-26 09:43:54 +02:00
|
|
|
memset(texture, 0, sizeof(*texture));
|
2017-08-14 08:25:26 -04:00
|
|
|
texture->impl = impl;
|
2020-04-27 12:45:21 +02:00
|
|
|
texture->width = width;
|
|
|
|
|
texture->height = height;
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void wlr_texture_destroy(struct wlr_texture *texture) {
|
2022-06-28 13:10:23 -04:00
|
|
|
if (!texture) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (texture->raster) {
|
|
|
|
|
wlr_raster_detach(texture->raster, texture);
|
|
|
|
|
texture->raster = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (texture->impl && texture->impl->destroy) {
|
2017-08-14 08:25:26 -04:00
|
|
|
texture->impl->destroy(texture);
|
2017-08-14 16:16:20 +02:00
|
|
|
} else {
|
|
|
|
|
free(texture);
|
2017-08-14 08:25:26 -04:00
|
|
|
}
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
2021-04-12 18:38:13 +02:00
|
|
|
struct wlr_texture *wlr_texture_from_buffer(struct wlr_renderer *renderer,
|
|
|
|
|
struct wlr_buffer *buffer) {
|
|
|
|
|
if (!renderer->impl->texture_from_buffer) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return renderer->impl->texture_from_buffer(renderer, buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-29 11:50:47 +02:00
|
|
|
bool wlr_texture_update_from_buffer(struct wlr_texture *texture,
|
|
|
|
|
struct wlr_buffer *buffer, pixman_region32_t *damage) {
|
|
|
|
|
if (!texture->impl->update_from_buffer) {
|
2020-04-27 12:49:24 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
2022-05-29 11:50:47 +02:00
|
|
|
if (texture->width != (uint32_t)buffer->width ||
|
|
|
|
|
texture->height != (uint32_t)buffer->height) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const pixman_box32_t *extents = pixman_region32_extents(damage);
|
|
|
|
|
if (extents->x1 < 0 || extents->y1 < 0 || extents->x2 > buffer->width ||
|
|
|
|
|
extents->y2 > buffer->height) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return texture->impl->update_from_buffer(texture, buffer, damage);
|
2017-08-14 13:28:59 -04:00
|
|
|
}
|