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>
|
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>
|
2021-06-29 20:11:53 +02:00
|
|
|
#include "types/wlr_buffer.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,
|
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 14:25:26 +02: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) {
|
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,
|
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);
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
bool wlr_texture_write_pixels(struct wlr_texture *texture,
|
2018-10-15 23:56:56 +02:00
|
|
|
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) {
|
2020-04-27 12:49:24 +02:00
|
|
|
if (!texture->impl->write_pixels) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-15 23:56:56 +02:00
|
|
|
return texture->impl->write_pixels(texture, stride, width, height,
|
2018-03-24 23:30:28 +01:00
|
|
|
src_x, src_y, dst_x, dst_y, data);
|
2017-08-14 19:28:59 +02:00
|
|
|
}
|