2017-08-08 18:02:14 +02:00
|
|
|
#include <assert.h>
|
2021-02-16 19:17:18 +01:00
|
|
|
#include <drm_fourcc.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <GLES2/gl2.h>
|
|
|
|
#include <GLES2/gl2ext.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <wayland-server-protocol.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wayland-util.h>
|
2017-10-21 03:48:58 +02:00
|
|
|
#include <wlr/render/egl.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <wlr/render/interface.h>
|
2019-01-29 19:33:38 +01:00
|
|
|
#include <wlr/render/wlr_texture.h>
|
2018-03-15 09:11:03 +01:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2017-08-08 18:02:14 +02:00
|
|
|
#include <wlr/util/log.h>
|
2021-06-24 12:10:12 +02:00
|
|
|
#include "render/egl.h"
|
2017-08-08 18:02:14 +02:00
|
|
|
#include "render/gles2.h"
|
2021-03-24 15:10:52 +01:00
|
|
|
#include "render/pixel_format.h"
|
2021-04-14 19:36:17 +02:00
|
|
|
#include "types/wlr_buffer.h"
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
static const struct wlr_texture_impl texture_impl;
|
|
|
|
|
2019-11-06 11:19:52 +01:00
|
|
|
bool wlr_texture_is_gles2(struct wlr_texture *wlr_texture) {
|
|
|
|
return wlr_texture->impl == &texture_impl;
|
|
|
|
}
|
|
|
|
|
2018-08-02 13:38:00 +02:00
|
|
|
struct wlr_gles2_texture *gles2_get_texture(
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture) {
|
2019-11-06 11:19:52 +01:00
|
|
|
assert(wlr_texture_is_gles2(wlr_texture));
|
2023-07-11 17:54:08 +02:00
|
|
|
struct wlr_gles2_texture *texture = wl_container_of(wlr_texture, texture, wlr_texture);
|
|
|
|
return texture;
|
2018-03-20 19:14:33 +01:00
|
|
|
}
|
|
|
|
|
2022-05-29 11:50:47 +02:00
|
|
|
static bool gles2_texture_update_from_buffer(struct wlr_texture *wlr_texture,
|
2022-10-24 12:54:03 +02:00
|
|
|
struct wlr_buffer *buffer, const pixman_region32_t *damage) {
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2021-04-12 11:58:38 +02:00
|
|
|
if (texture->target != GL_TEXTURE_2D || texture->image != EGL_NO_IMAGE_KHR) {
|
2022-05-29 11:50:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *data;
|
|
|
|
uint32_t format;
|
|
|
|
size_t stride;
|
|
|
|
if (!wlr_buffer_begin_data_ptr_access(buffer,
|
|
|
|
WLR_BUFFER_DATA_PTR_ACCESS_READ, &data, &format, &stride)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format != texture->drm_format) {
|
|
|
|
wlr_buffer_end_data_ptr_access(buffer);
|
2018-03-24 23:30:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2018-10-16 09:35:28 +02:00
|
|
|
const struct wlr_gles2_pixel_format *fmt =
|
2021-02-16 19:17:18 +01:00
|
|
|
get_gles2_format_from_drm(texture->drm_format);
|
2018-10-15 23:56:56 +02:00
|
|
|
assert(fmt);
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2021-03-24 15:10:52 +01:00
|
|
|
const struct wlr_pixel_format_info *drm_fmt =
|
|
|
|
drm_get_pixel_format_info(texture->drm_format);
|
|
|
|
assert(drm_fmt);
|
2023-05-08 22:17:26 +02:00
|
|
|
if (pixel_format_info_pixels_per_block(drm_fmt) != 1) {
|
|
|
|
wlr_buffer_end_data_ptr_access(buffer);
|
|
|
|
wlr_log(WLR_ERROR, "Cannot update texture: block formats are not supported");
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-24 15:10:52 +01:00
|
|
|
|
2022-09-17 14:37:52 +02:00
|
|
|
if (!pixel_format_info_check_stride(drm_fmt, stride, buffer->width)) {
|
2022-05-29 11:50:47 +02:00
|
|
|
wlr_buffer_end_data_ptr_access(buffer);
|
2021-02-19 09:59:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
wlr_egl_save_context(&prev_ctx);
|
|
|
|
wlr_egl_make_current(texture->renderer->egl);
|
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
push_gles2_debug(texture->renderer);
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
glBindTexture(GL_TEXTURE_2D, texture->tex);
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2022-05-29 11:50:47 +02:00
|
|
|
int rects_len = 0;
|
2022-10-24 12:54:03 +02:00
|
|
|
const pixman_box32_t *rects = pixman_region32_rectangles(damage, &rects_len);
|
2022-05-29 11:50:47 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < rects_len; i++) {
|
|
|
|
pixman_box32_t rect = rects[i];
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2023-05-08 22:17:26 +02:00
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride / drm_fmt->bytes_per_block);
|
2022-05-29 11:50:47 +02:00
|
|
|
glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, rect.x1);
|
|
|
|
glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, rect.y1);
|
|
|
|
|
|
|
|
int width = rect.x2 - rect.x1;
|
|
|
|
int height = rect.y2 - rect.y1;
|
|
|
|
glTexSubImage2D(GL_TEXTURE_2D, 0, rect.x1, rect.y1, width, height,
|
|
|
|
fmt->gl_format, fmt->gl_type, data);
|
|
|
|
}
|
2017-08-10 04:17:40 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, 0);
|
2018-03-20 19:14:33 +01:00
|
|
|
glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, 0);
|
|
|
|
glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, 0);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2020-01-13 15:26:48 +01:00
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
pop_gles2_debug(texture->renderer);
|
2020-05-19 11:54:59 +02:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
|
|
|
|
2022-05-29 11:50:47 +02:00
|
|
|
wlr_buffer_end_data_ptr_access(buffer);
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-12 11:58:31 +02:00
|
|
|
static bool gles2_texture_invalidate(struct wlr_gles2_texture *texture) {
|
|
|
|
if (texture->image == EGL_NO_IMAGE_KHR) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (texture->target == GL_TEXTURE_EXTERNAL_OES) {
|
|
|
|
// External changes are immediately made visible by the GL implementation
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
wlr_egl_save_context(&prev_ctx);
|
|
|
|
wlr_egl_make_current(texture->renderer->egl);
|
|
|
|
|
|
|
|
push_gles2_debug(texture->renderer);
|
|
|
|
|
|
|
|
glBindTexture(texture->target, texture->tex);
|
|
|
|
texture->renderer->procs.glEGLImageTargetTexture2DOES(texture->target,
|
|
|
|
texture->image);
|
|
|
|
glBindTexture(texture->target, 0);
|
|
|
|
|
|
|
|
pop_gles2_debug(texture->renderer);
|
|
|
|
|
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-01-14 15:02:19 +01:00
|
|
|
|
2021-05-29 10:25:25 +02:00
|
|
|
void gles2_texture_destroy(struct wlr_gles2_texture *texture) {
|
2021-04-21 12:02:16 +02:00
|
|
|
wl_list_remove(&texture->link);
|
2021-08-11 10:09:06 +02:00
|
|
|
if (texture->buffer != NULL) {
|
|
|
|
wlr_addon_finish(&texture->buffer_addon);
|
|
|
|
}
|
2021-04-21 12:02:16 +02:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
wlr_egl_save_context(&prev_ctx);
|
|
|
|
wlr_egl_make_current(texture->renderer->egl);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
push_gles2_debug(texture->renderer);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
glDeleteTextures(1, &texture->tex);
|
2020-07-28 13:56:29 +02:00
|
|
|
wlr_egl_destroy_image(texture->renderer->egl, texture->image);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
pop_gles2_debug(texture->renderer);
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
2020-05-19 11:54:59 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
free(texture);
|
|
|
|
}
|
2017-08-12 11:41:40 +02:00
|
|
|
|
2021-04-12 11:58:31 +02:00
|
|
|
static void gles2_texture_unref(struct wlr_texture *wlr_texture) {
|
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
|
|
|
if (texture->buffer != NULL) {
|
|
|
|
// Keep the texture around, in case the buffer is re-used later. We're
|
|
|
|
// still listening to the buffer's destroy event.
|
|
|
|
wlr_buffer_unlock(texture->buffer);
|
|
|
|
} else {
|
|
|
|
gles2_texture_destroy(texture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static const struct wlr_texture_impl texture_impl = {
|
2022-05-29 11:50:47 +02:00
|
|
|
.update_from_buffer = gles2_texture_update_from_buffer,
|
2021-04-12 11:58:31 +02:00
|
|
|
.destroy = gles2_texture_unref,
|
2018-03-24 23:30:28 +01:00
|
|
|
};
|
|
|
|
|
2021-04-12 16:55:18 +02:00
|
|
|
static struct wlr_gles2_texture *gles2_texture_create(
|
|
|
|
struct wlr_gles2_renderer *renderer, uint32_t width, uint32_t height) {
|
2023-10-03 07:51:07 +02:00
|
|
|
struct wlr_gles2_texture *texture = calloc(1, sizeof(*texture));
|
2021-04-12 16:55:18 +02:00
|
|
|
if (texture == NULL) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
2022-12-01 10:41:43 +01:00
|
|
|
wlr_texture_init(&texture->wlr_texture, &renderer->wlr_renderer,
|
|
|
|
&texture_impl, width, height);
|
2021-04-12 16:55:18 +02:00
|
|
|
texture->renderer = renderer;
|
|
|
|
wl_list_insert(&renderer->textures, &texture->link);
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2021-06-29 20:39:19 +02:00
|
|
|
static struct wlr_texture *gles2_texture_from_pixels(
|
|
|
|
struct wlr_renderer *wlr_renderer,
|
2021-02-16 19:41:40 +01:00
|
|
|
uint32_t drm_format, uint32_t stride, uint32_t width,
|
2018-03-24 23:30:28 +01:00
|
|
|
uint32_t height, const void *data) {
|
2020-07-28 13:45:24 +02:00
|
|
|
struct wlr_gles2_renderer *renderer = gles2_get_renderer(wlr_renderer);
|
|
|
|
|
2021-02-16 19:17:18 +01:00
|
|
|
const struct wlr_gles2_pixel_format *fmt =
|
2021-02-16 19:41:40 +01:00
|
|
|
get_gles2_format_from_drm(drm_format);
|
2018-03-24 23:30:28 +01:00
|
|
|
if (fmt == NULL) {
|
2021-02-16 19:41:40 +01:00
|
|
|
wlr_log(WLR_ERROR, "Unsupported pixel format 0x%"PRIX32, drm_format);
|
2018-03-24 23:30:28 +01:00
|
|
|
return NULL;
|
2017-08-12 11:41:40 +02:00
|
|
|
}
|
|
|
|
|
2021-03-24 15:10:52 +01:00
|
|
|
const struct wlr_pixel_format_info *drm_fmt =
|
|
|
|
drm_get_pixel_format_info(drm_format);
|
|
|
|
assert(drm_fmt);
|
2023-05-08 22:17:26 +02:00
|
|
|
if (pixel_format_info_pixels_per_block(drm_fmt) != 1) {
|
|
|
|
wlr_log(WLR_ERROR, "Cannot upload texture: block formats are not supported");
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-03-24 15:10:52 +01:00
|
|
|
|
2022-09-17 14:37:52 +02:00
|
|
|
if (!pixel_format_info_check_stride(drm_fmt, stride, width)) {
|
2021-02-19 09:59:49 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture =
|
2021-04-12 16:55:18 +02:00
|
|
|
gles2_texture_create(renderer, width, height);
|
2018-03-24 23:30:28 +01:00
|
|
|
if (texture == NULL) {
|
|
|
|
return NULL;
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
2019-11-06 09:28:43 +01:00
|
|
|
texture->target = GL_TEXTURE_2D;
|
2018-03-24 23:30:28 +01:00
|
|
|
texture->has_alpha = fmt->has_alpha;
|
2021-02-16 19:17:18 +01:00
|
|
|
texture->drm_format = fmt->drm_format;
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2022-05-01 04:43:49 +02:00
|
|
|
GLint internal_format = fmt->gl_internalformat;
|
|
|
|
if (!internal_format) {
|
|
|
|
internal_format = fmt->gl_format;
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
wlr_egl_save_context(&prev_ctx);
|
|
|
|
wlr_egl_make_current(renderer->egl);
|
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
push_gles2_debug(renderer);
|
2017-08-10 04:17:40 +02:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
glGenTextures(1, &texture->tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture->tex);
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2021-02-01 20:48:43 +01:00
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2023-05-08 22:17:26 +02:00
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride / drm_fmt->bytes_per_block);
|
2022-05-01 04:43:49 +02:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, internal_format, width, height, 0,
|
2018-03-24 23:30:28 +01:00
|
|
|
fmt->gl_format, fmt->gl_type, data);
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, 0);
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2020-01-13 15:26:48 +01:00
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
pop_gles2_debug(renderer);
|
2020-05-19 11:54:59 +02:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
|
|
|
|
2018-04-01 05:20:00 +02:00
|
|
|
return &texture->wlr_texture;
|
2017-10-01 08:22:47 +02:00
|
|
|
}
|
|
|
|
|
2021-06-29 21:02:06 +02:00
|
|
|
static struct wlr_texture *gles2_texture_from_dmabuf(
|
|
|
|
struct wlr_renderer *wlr_renderer,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
2020-07-28 13:45:24 +02:00
|
|
|
struct wlr_gles2_renderer *renderer = gles2_get_renderer(wlr_renderer);
|
|
|
|
|
2020-07-28 14:02:08 +02:00
|
|
|
if (!renderer->procs.glEGLImageTargetTexture2DOES) {
|
2018-03-24 23:30:28 +01:00
|
|
|
return NULL;
|
2017-08-12 11:41:40 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture =
|
2021-04-12 16:55:18 +02:00
|
|
|
gles2_texture_create(renderer, attribs->width, attribs->height);
|
2018-03-24 23:30:28 +01:00
|
|
|
if (texture == NULL) {
|
2017-08-15 07:56:47 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2021-02-16 19:17:18 +01:00
|
|
|
texture->drm_format = DRM_FORMAT_INVALID; // texture can't be written anyways
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2021-07-11 19:43:51 +02:00
|
|
|
const struct wlr_pixel_format_info *drm_fmt =
|
|
|
|
drm_get_pixel_format_info(attribs->format);
|
|
|
|
if (drm_fmt != NULL) {
|
|
|
|
texture->has_alpha = drm_fmt->has_alpha;
|
|
|
|
} else {
|
|
|
|
// We don't know, assume the texture has an alpha channel
|
|
|
|
texture->has_alpha = true;
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
wlr_egl_save_context(&prev_ctx);
|
|
|
|
wlr_egl_make_current(renderer->egl);
|
|
|
|
|
2020-06-05 15:13:32 +02:00
|
|
|
bool external_only;
|
|
|
|
texture->image =
|
2020-07-28 13:56:29 +02:00
|
|
|
wlr_egl_create_image_from_dmabuf(renderer->egl, attribs, &external_only);
|
2020-04-27 12:45:21 +02:00
|
|
|
if (texture->image == EGL_NO_IMAGE_KHR) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create EGL image from DMA-BUF");
|
2021-01-14 15:02:19 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
2021-04-12 16:55:18 +02:00
|
|
|
wl_list_remove(&texture->link);
|
2018-03-24 23:30:28 +01:00
|
|
|
free(texture);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-06-05 15:13:32 +02:00
|
|
|
texture->target = external_only ? GL_TEXTURE_EXTERNAL_OES : GL_TEXTURE_2D;
|
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
push_gles2_debug(renderer);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
glGenTextures(1, &texture->tex);
|
2020-06-05 15:13:32 +02:00
|
|
|
glBindTexture(texture->target, texture->tex);
|
2021-02-01 20:48:43 +01:00
|
|
|
glTexParameteri(texture->target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(texture->target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2020-07-28 14:02:08 +02:00
|
|
|
renderer->procs.glEGLImageTargetTexture2DOES(texture->target, texture->image);
|
2020-06-05 15:13:32 +02:00
|
|
|
glBindTexture(texture->target, 0);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
pop_gles2_debug(renderer);
|
2020-05-19 11:54:59 +02:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
|
|
|
|
2018-04-01 05:20:00 +02:00
|
|
|
return &texture->wlr_texture;
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
2019-11-06 11:19:52 +01:00
|
|
|
|
2021-08-11 10:09:06 +02:00
|
|
|
static void texture_handle_buffer_destroy(struct wlr_addon *addon) {
|
2021-04-12 11:58:31 +02:00
|
|
|
struct wlr_gles2_texture *texture =
|
2021-08-11 10:09:06 +02:00
|
|
|
wl_container_of(addon, texture, buffer_addon);
|
2021-04-12 11:58:31 +02:00
|
|
|
gles2_texture_destroy(texture);
|
|
|
|
}
|
|
|
|
|
2021-08-11 10:09:06 +02:00
|
|
|
static const struct wlr_addon_interface texture_addon_impl = {
|
|
|
|
.name = "wlr_gles2_texture",
|
|
|
|
.destroy = texture_handle_buffer_destroy,
|
|
|
|
};
|
|
|
|
|
2021-04-14 19:36:17 +02:00
|
|
|
static struct wlr_texture *gles2_texture_from_dmabuf_buffer(
|
|
|
|
struct wlr_gles2_renderer *renderer, struct wlr_buffer *buffer,
|
|
|
|
struct wlr_dmabuf_attributes *dmabuf) {
|
2021-08-11 10:09:06 +02:00
|
|
|
struct wlr_addon *addon =
|
|
|
|
wlr_addon_find(&buffer->addons, renderer, &texture_addon_impl);
|
|
|
|
if (addon != NULL) {
|
|
|
|
struct wlr_gles2_texture *texture =
|
|
|
|
wl_container_of(addon, texture, buffer_addon);
|
|
|
|
if (!gles2_texture_invalidate(texture)) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to invalidate texture");
|
|
|
|
return false;
|
2021-04-12 11:58:31 +02:00
|
|
|
}
|
2021-08-11 10:09:06 +02:00
|
|
|
wlr_buffer_lock(texture->buffer);
|
|
|
|
return &texture->wlr_texture;
|
2021-04-12 11:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_texture *wlr_texture =
|
2021-04-14 19:36:17 +02:00
|
|
|
gles2_texture_from_dmabuf(&renderer->wlr_renderer, dmabuf);
|
2021-04-12 11:58:31 +02:00
|
|
|
if (wlr_texture == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-11 10:09:06 +02:00
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2021-04-12 11:58:31 +02:00
|
|
|
texture->buffer = wlr_buffer_lock(buffer);
|
2021-08-11 10:09:06 +02:00
|
|
|
wlr_addon_init(&texture->buffer_addon, &buffer->addons,
|
|
|
|
renderer, &texture_addon_impl);
|
2021-04-12 11:58:31 +02:00
|
|
|
|
|
|
|
return &texture->wlr_texture;
|
|
|
|
}
|
|
|
|
|
2021-04-14 19:36:17 +02:00
|
|
|
struct wlr_texture *gles2_texture_from_buffer(struct wlr_renderer *wlr_renderer,
|
|
|
|
struct wlr_buffer *buffer) {
|
|
|
|
struct wlr_gles2_renderer *renderer = gles2_get_renderer(wlr_renderer);
|
|
|
|
|
|
|
|
void *data;
|
|
|
|
uint32_t format;
|
|
|
|
size_t stride;
|
|
|
|
struct wlr_dmabuf_attributes dmabuf;
|
|
|
|
if (wlr_buffer_get_dmabuf(buffer, &dmabuf)) {
|
|
|
|
return gles2_texture_from_dmabuf_buffer(renderer, buffer, &dmabuf);
|
2021-09-10 19:25:42 +02:00
|
|
|
} else if (wlr_buffer_begin_data_ptr_access(buffer,
|
2021-06-29 17:08:32 +02:00
|
|
|
WLR_BUFFER_DATA_PTR_ACCESS_READ, &data, &format, &stride)) {
|
2021-04-14 19:36:17 +02:00
|
|
|
struct wlr_texture *tex = gles2_texture_from_pixels(wlr_renderer,
|
|
|
|
format, stride, buffer->width, buffer->height, data);
|
2021-09-10 19:25:42 +02:00
|
|
|
wlr_buffer_end_data_ptr_access(buffer);
|
2021-04-14 19:36:17 +02:00
|
|
|
return tex;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 11:19:52 +01:00
|
|
|
void wlr_gles2_texture_get_attribs(struct wlr_texture *wlr_texture,
|
|
|
|
struct wlr_gles2_texture_attribs *attribs) {
|
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2023-07-07 14:34:56 +02:00
|
|
|
*attribs = (struct wlr_gles2_texture_attribs){
|
|
|
|
.target = texture->target,
|
|
|
|
.tex = texture->tex,
|
|
|
|
.has_alpha = texture->has_alpha,
|
|
|
|
};
|
2019-11-06 11:19:52 +01:00
|
|
|
}
|