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
|
|
|
|
2022-06-25 14:21:53 -04:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture, struct wlr_renderer *renderer,
|
2020-04-27 12:45:21 +02:00
|
|
|
const struct wlr_texture_impl *impl, uint32_t width, uint32_t height) {
|
2022-06-25 14:21:53 -04:00
|
|
|
assert(renderer);
|
|
|
|
|
|
2022-04-26 09:43:54 +02:00
|
|
|
memset(texture, 0, sizeof(*texture));
|
2022-06-25 14:21:53 -04:00
|
|
|
texture->renderer = renderer;
|
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
|
|
|
}
|
|
|
|
|
|
2022-06-20 12:34:10 -04:00
|
|
|
bool wlr_texture_update_from_raster(struct wlr_texture *texture,
|
|
|
|
|
struct wlr_raster *raster, pixman_region32_t *damage) {
|
|
|
|
|
if (!texture->impl->update_from_raster) {
|
2020-04-27 12:49:24 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
2022-06-20 12:34:10 -04:00
|
|
|
if (texture->width != raster->width || texture->height != raster->height) {
|
2022-05-29 11:50:47 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const pixman_box32_t *extents = pixman_region32_extents(damage);
|
2022-06-20 12:34:10 -04:00
|
|
|
if (extents->x1 < 0 || extents->y1 < 0 || extents->x2 > (int32_t)raster->width ||
|
|
|
|
|
extents->y2 > (int32_t)raster->height) {
|
2022-05-29 11:50:47 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
2022-06-20 12:34:10 -04:00
|
|
|
return texture->impl->update_from_raster(texture, raster, damage);
|
2017-08-14 13:28:59 -04:00
|
|
|
}
|