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>
|
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
|
|
|
|
2023-11-30 16:38:25 +01:00
|
|
|
if (texture->drm_format == DRM_FORMAT_INVALID) {
|
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;
|
2024-02-22 19:26:06 +01:00
|
|
|
wlr_egl_make_current(texture->renderer->egl, &prev_ctx);
|
2021-01-14 15:02:19 +01:00
|
|
|
|
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-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) {
|
2023-06-24 07:52:30 +02:00
|
|
|
wlr_buffer_unlock(texture->buffer->buffer);
|
2023-12-01 01:56:41 +01:00
|
|
|
} else {
|
2023-06-25 11:36:11 +02:00
|
|
|
struct wlr_egl_context prev_ctx;
|
2024-02-22 19:26:06 +01:00
|
|
|
wlr_egl_make_current(texture->renderer->egl, &prev_ctx);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2023-06-25 11:36:11 +02:00
|
|
|
push_gles2_debug(texture->renderer);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2023-06-25 11:36:11 +02:00
|
|
|
glDeleteTextures(1, &texture->tex);
|
2023-12-01 01:56:41 +01:00
|
|
|
glDeleteFramebuffers(1, &texture->fbo);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2023-06-25 11:36:11 +02:00
|
|
|
pop_gles2_debug(texture->renderer);
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2023-06-25 11:36:11 +02: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
|
|
|
|
2023-06-24 07:52:30 +02:00
|
|
|
static void handle_gles2_texture_destroy(struct wlr_texture *wlr_texture) {
|
|
|
|
gles2_texture_destroy(gles2_get_texture(wlr_texture));
|
2021-04-12 11:58:31 +02:00
|
|
|
}
|
|
|
|
|
2023-12-01 01:56:41 +01:00
|
|
|
static bool gles2_texture_bind(struct wlr_gles2_texture *texture) {
|
|
|
|
if (texture->fbo) {
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, texture->fbo);
|
|
|
|
} else if (texture->buffer) {
|
|
|
|
if (texture->buffer->external_only) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLuint fbo = gles2_buffer_get_fbo(texture->buffer);
|
|
|
|
if (!fbo) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, fbo);
|
|
|
|
} else {
|
|
|
|
glGenFramebuffers(1, &texture->fbo);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, texture->fbo);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
texture->target, texture->tex, 0);
|
|
|
|
|
|
|
|
GLenum fb_status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
|
|
|
|
if (fb_status != GL_FRAMEBUFFER_COMPLETE) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create FBO");
|
|
|
|
glDeleteFramebuffers(1, &texture->fbo);
|
|
|
|
texture->fbo = 0;
|
|
|
|
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool gles2_texture_read_pixels(struct wlr_texture *wlr_texture,
|
|
|
|
const struct wlr_texture_read_pixels_options *options) {
|
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
|
|
|
|
|
|
|
struct wlr_box src;
|
|
|
|
wlr_texture_read_pixels_options_get_src_box(options, wlr_texture, &src);
|
|
|
|
|
|
|
|
const struct wlr_gles2_pixel_format *fmt =
|
|
|
|
get_gles2_format_from_drm(options->format);
|
|
|
|
if (fmt == NULL || !is_gles2_pixel_format_supported(texture->renderer, fmt)) {
|
|
|
|
wlr_log(WLR_ERROR, "Cannot read pixels: unsupported pixel format 0x%"PRIX32, options->format);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt->gl_format == GL_BGRA_EXT && !texture->renderer->exts.EXT_read_format_bgra) {
|
|
|
|
wlr_log(WLR_ERROR,
|
|
|
|
"Cannot read pixels: missing GL_EXT_read_format_bgra extension");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct wlr_pixel_format_info *drm_fmt =
|
|
|
|
drm_get_pixel_format_info(fmt->drm_format);
|
|
|
|
assert(drm_fmt);
|
|
|
|
if (pixel_format_info_pixels_per_block(drm_fmt) != 1) {
|
|
|
|
wlr_log(WLR_ERROR, "Cannot read pixels: block formats are not supported");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
push_gles2_debug(texture->renderer);
|
2023-12-01 02:01:12 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
2024-02-22 19:26:06 +01:00
|
|
|
if (!wlr_egl_make_current(texture->renderer->egl, &prev_ctx)) {
|
2023-12-01 01:56:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gles2_texture_bind(texture)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure any pending drawing is finished before we try to read it
|
|
|
|
glFinish();
|
|
|
|
|
|
|
|
glGetError(); // Clear the error flag
|
|
|
|
|
|
|
|
unsigned char *p = wlr_texture_read_pixel_options_get_data(options);
|
|
|
|
|
|
|
|
glPixelStorei(GL_PACK_ALIGNMENT, 1);
|
|
|
|
uint32_t pack_stride = pixel_format_info_min_stride(drm_fmt, src.width);
|
|
|
|
if (pack_stride == options->stride && options->dst_x == 0) {
|
|
|
|
// Under these particular conditions, we can read the pixels with only
|
|
|
|
// one glReadPixels call
|
|
|
|
|
|
|
|
glReadPixels(src.x, src.y, src.width, src.height, fmt->gl_format, fmt->gl_type, p);
|
|
|
|
} else {
|
|
|
|
// Unfortunately GLES2 doesn't support GL_PACK_ROW_LENGTH, so we have to read
|
|
|
|
// the lines out row by row
|
|
|
|
for (int32_t i = 0; i < src.height; ++i) {
|
|
|
|
uint32_t y = src.y + i;
|
|
|
|
glReadPixels(src.x, y, src.width, 1, fmt->gl_format,
|
|
|
|
fmt->gl_type, p + i * options->stride);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-01 02:01:12 +01:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
2023-12-01 01:56:41 +01:00
|
|
|
pop_gles2_debug(texture->renderer);
|
|
|
|
|
|
|
|
return glGetError() == GL_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2023-12-01 02:01:12 +01:00
|
|
|
static uint32_t gles2_texture_preferred_read_format(struct wlr_texture *wlr_texture) {
|
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
|
|
|
|
|
|
|
push_gles2_debug(texture->renderer);
|
|
|
|
|
|
|
|
uint32_t fmt = DRM_FORMAT_INVALID;
|
|
|
|
|
2024-02-22 19:26:06 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
|
|
|
if (!wlr_egl_make_current(texture->renderer->egl, &prev_ctx)) {
|
|
|
|
return fmt;
|
2023-12-01 02:01:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!gles2_texture_bind(texture)) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLint gl_format = -1, gl_type = -1, alpha_size = -1;
|
|
|
|
glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT, &gl_format);
|
|
|
|
glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE, &gl_type);
|
|
|
|
glGetIntegerv(GL_ALPHA_BITS, &alpha_size);
|
|
|
|
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
|
|
|
pop_gles2_debug(texture->renderer);
|
|
|
|
|
|
|
|
const struct wlr_gles2_pixel_format *pix_fmt =
|
|
|
|
get_gles2_format_from_gl(gl_format, gl_type, alpha_size > 0);
|
|
|
|
if (pix_fmt != NULL) {
|
|
|
|
fmt = pix_fmt->drm_format;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (texture->renderer->exts.EXT_read_format_bgra) {
|
|
|
|
fmt = DRM_FORMAT_XRGB8888;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
|
|
|
return fmt;
|
|
|
|
}
|
|
|
|
|
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,
|
2023-12-01 01:56:41 +01:00
|
|
|
.read_pixels = gles2_texture_read_pixels,
|
2023-12-01 02:01:12 +01:00
|
|
|
.preferred_read_format = gles2_texture_preferred_read_format,
|
2023-06-24 07:52:30 +02:00
|
|
|
.destroy = handle_gles2_texture_destroy,
|
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;
|
2024-01-31 20:15:00 +01:00
|
|
|
texture->has_alpha = pixel_format_has_alpha(fmt->drm_format);
|
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;
|
2024-02-22 19:26:06 +01:00
|
|
|
wlr_egl_make_current(renderer->egl, &prev_ctx);
|
2021-01-14 15:02:19 +01:00
|
|
|
|
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(
|
2023-06-25 11:36:11 +02:00
|
|
|
struct wlr_gles2_renderer *renderer, struct wlr_buffer *wlr_buffer,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
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
|
|
|
}
|
|
|
|
|
2023-06-25 11:36:11 +02:00
|
|
|
struct wlr_gles2_buffer *buffer = gles2_buffer_get_or_create(renderer, wlr_buffer);
|
|
|
|
if (!buffer) {
|
|
|
|
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, 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;
|
|
|
|
}
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2023-06-25 11:40:24 +02:00
|
|
|
texture->target = buffer->external_only ? GL_TEXTURE_EXTERNAL_OES : GL_TEXTURE_2D;
|
2023-06-25 11:36:11 +02:00
|
|
|
texture->buffer = buffer;
|
|
|
|
texture->drm_format = DRM_FORMAT_INVALID; // texture can't be written anyways
|
2024-01-31 18:30:16 +01:00
|
|
|
texture->has_alpha = pixel_format_has_alpha(attribs->format);
|
2021-07-11 19:43:51 +02:00
|
|
|
|
2021-01-14 15:02:19 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
2024-02-22 19:26:06 +01:00
|
|
|
wlr_egl_make_current(renderer->egl, &prev_ctx);
|
2023-06-25 11:40:24 +02:00
|
|
|
push_gles2_debug(texture->renderer);
|
2021-01-14 15:02:19 +01:00
|
|
|
|
2023-06-25 11:40:24 +02:00
|
|
|
bool invalid;
|
|
|
|
if (!buffer->tex) {
|
|
|
|
glGenTextures(1, &buffer->tex);
|
|
|
|
invalid = true;
|
2023-06-25 11:36:11 +02:00
|
|
|
} else {
|
2023-06-25 11:40:24 +02:00
|
|
|
// External changes are immediately made visible by the GL implementation
|
|
|
|
invalid = !buffer->external_only;
|
|
|
|
}
|
2021-04-12 11:58:31 +02:00
|
|
|
|
2023-06-25 11:40:24 +02:00
|
|
|
if (invalid) {
|
|
|
|
glBindTexture(texture->target, buffer->tex);
|
2023-06-25 11:36:11 +02:00
|
|
|
glTexParameteri(texture->target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(texture->target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
renderer->procs.glEGLImageTargetTexture2DOES(texture->target, buffer->image);
|
|
|
|
glBindTexture(texture->target, 0);
|
2021-04-12 11:58:31 +02:00
|
|
|
}
|
|
|
|
|
2023-06-25 11:40:24 +02:00
|
|
|
pop_gles2_debug(texture->renderer);
|
2023-06-25 11:36:11 +02:00
|
|
|
wlr_egl_restore_context(&prev_ctx);
|
2021-04-12 11:58:31 +02:00
|
|
|
|
2023-06-25 11:40:24 +02:00
|
|
|
texture->tex = buffer->tex;
|
2023-06-25 11:36:11 +02:00
|
|
|
wlr_buffer_lock(texture->buffer->buffer);
|
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)) {
|
2023-06-25 11:36:11 +02:00
|
|
|
return gles2_texture_from_dmabuf(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
|
|
|
}
|