2018-03-24 23:30:28 +01:00
|
|
|
#include <assert.h>
|
2023-06-19 07:43:15 +02:00
|
|
|
#include <drm_fourcc.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>
|
2023-12-01 01:55:51 +01:00
|
|
|
#include "render/pixel_format.h"
|
2021-06-29 20:11:53 +02:00
|
|
|
#include "types/wlr_buffer.h"
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2022-12-01 10:41:43 +01: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-12-01 10:41:43 +01:00
|
|
|
assert(renderer);
|
|
|
|
|
2023-07-07 14:34:56 +02:00
|
|
|
*texture = (struct wlr_texture){
|
|
|
|
.renderer = renderer,
|
|
|
|
.impl = impl,
|
|
|
|
.width = width,
|
|
|
|
.height = height,
|
|
|
|
};
|
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
|
|
|
}
|
|
|
|
|
2023-12-01 01:55:51 +01:00
|
|
|
void wlr_texture_read_pixels_options_get_src_box(
|
|
|
|
const struct wlr_texture_read_pixels_options *options,
|
|
|
|
const struct wlr_texture *texture, struct wlr_box *box) {
|
|
|
|
if (wlr_box_empty(&options->src_box)) {
|
|
|
|
*box = (struct wlr_box){
|
|
|
|
.x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.width = texture->width,
|
|
|
|
.height = texture->height,
|
|
|
|
};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*box = options->src_box;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *wlr_texture_read_pixel_options_get_data(
|
|
|
|
const struct wlr_texture_read_pixels_options *options) {
|
|
|
|
const struct wlr_pixel_format_info *fmt = drm_get_pixel_format_info(options->format);
|
|
|
|
|
|
|
|
return (char *)options->data +
|
|
|
|
pixel_format_info_min_stride(fmt, options->dst_x) +
|
|
|
|
options->dst_y * options->stride;
|
|
|
|
}
|
|
|
|
|
2023-12-01 01:55:12 +01:00
|
|
|
bool wlr_texture_read_pixels(struct wlr_texture *texture,
|
|
|
|
const struct wlr_texture_read_pixels_options *options) {
|
|
|
|
if (!texture->impl->read_pixels) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture->impl->read_pixels(texture, options);
|
|
|
|
}
|
|
|
|
|
2023-06-19 07:43:15 +02:00
|
|
|
uint32_t wlr_texture_preferred_read_format(struct wlr_texture *texture) {
|
|
|
|
if (!texture->impl->preferred_read_format) {
|
|
|
|
return DRM_FORMAT_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture->impl->preferred_read_format(texture);
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer,
|
2021-02-16 19:41:40 +01:00
|
|
|
uint32_t fmt, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
const void *data) {
|
2021-04-20 17:27:25 +02:00
|
|
|
assert(width > 0);
|
|
|
|
assert(height > 0);
|
2021-05-17 12:09:37 +02:00
|
|
|
assert(stride > 0);
|
2021-04-20 17:27:25 +02:00
|
|
|
assert(data);
|
2021-06-29 20:11:53 +02:00
|
|
|
|
|
|
|
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;
|
2017-08-08 18:02:14 +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) {
|
2021-06-29 21:01:45 +02:00
|
|
|
struct wlr_dmabuf_buffer *buffer = dmabuf_buffer_create(attribs);
|
|
|
|
if (buffer == NULL) {
|
2018-03-24 23:30:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2021-06-29 21:01:45 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
dmabuf_buffer_drop(buffer);
|
|
|
|
|
|
|
|
return texture;
|
2017-10-01 08:22:47 +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,
|
2022-10-24 12:54:03 +02:00
|
|
|
struct wlr_buffer *buffer, const pixman_region32_t *damage) {
|
2022-05-29 11:50:47 +02:00
|
|
|
if (!texture->impl->update_from_buffer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
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) {
|
2020-04-27 12:49:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
2022-05-29 11:50:47 +02:00
|
|
|
return texture->impl->update_from_buffer(texture, buffer, damage);
|
2017-08-14 19:28:59 +02:00
|
|
|
}
|