2017-08-08 18:02:14 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#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>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_texture.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>
|
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>
|
2018-03-24 23:30:28 +01:00
|
|
|
#include "glapi.h"
|
2017-08-08 18:02:14 +02:00
|
|
|
#include "render/gles2.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.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;
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static struct wlr_gles2_texture *gles2_get_texture(
|
|
|
|
struct wlr_texture *wlr_texture) {
|
2018-03-20 19:14:33 +01:00
|
|
|
assert(wlr_texture->impl == &texture_impl);
|
|
|
|
return (struct wlr_gles2_texture *)wlr_texture;
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *gles2_get_texture_in_context(
|
|
|
|
struct wlr_texture *wlr_texture) {
|
2018-03-20 19:14:33 +01:00
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2018-04-01 22:07:50 +02:00
|
|
|
assert(wlr_egl_is_current(texture->egl));
|
2018-03-24 23:30:28 +01:00
|
|
|
return texture;
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static void gles2_texture_get_size(struct wlr_texture *wlr_texture, int *width,
|
|
|
|
int *height) {
|
2018-03-20 19:14:33 +01:00
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2018-03-24 23:30:28 +01:00
|
|
|
*width = texture->width;
|
|
|
|
*height = texture->height;
|
2017-08-10 04:17:40 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static bool gles2_texture_write_pixels(struct wlr_texture *wlr_texture,
|
|
|
|
enum wl_shm_format wl_fmt, 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) {
|
|
|
|
struct wlr_gles2_texture *texture =
|
|
|
|
gles2_get_texture_in_context(wlr_texture);
|
|
|
|
|
|
|
|
if (texture->type != WLR_GLES2_TEXTURE_GLTEX) {
|
|
|
|
wlr_log(L_ERROR, "Cannot write pixels to immutable texture");
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
const struct gles2_pixel_format *fmt = gles2_format_from_wl(wl_fmt);
|
|
|
|
if (fmt == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Unsupported pixel format %"PRIu32, wl_fmt);
|
2017-08-08 18:02:14 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
// TODO: what if the unpack subimage extension isn't supported?
|
2018-03-20 19:14:33 +01:00
|
|
|
GLES2_DEBUG_PUSH;
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glBindTexture(GL_TEXTURE_2D, texture->gl_tex);
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride / (fmt->bpp / 8));
|
|
|
|
glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, src_x);
|
|
|
|
glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, src_y);
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glTexSubImage2D(GL_TEXTURE_2D, 0, dst_x, dst_y, 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
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
GLES2_DEBUG_POP;
|
2017-08-09 21:25:34 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static void gles2_texture_destroy(struct wlr_texture *wlr_texture) {
|
|
|
|
if (wlr_texture == NULL) {
|
|
|
|
return;
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
wlr_egl_make_current(texture->egl, EGL_NO_SURFACE, NULL);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
GLES2_DEBUG_PUSH;
|
|
|
|
|
|
|
|
if (texture->image_tex) {
|
|
|
|
glDeleteTextures(1, &texture->image_tex);
|
|
|
|
}
|
|
|
|
if (texture->image) {
|
|
|
|
assert(eglDestroyImageKHR);
|
2018-04-01 22:07:50 +02:00
|
|
|
wlr_egl_destroy_image(texture->egl, texture->image);
|
2018-03-15 15:51:15 +01:00
|
|
|
}
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
if (texture->type == WLR_GLES2_TEXTURE_GLTEX) {
|
|
|
|
glDeleteTextures(1, &texture->gl_tex);
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
GLES2_DEBUG_POP;
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
free(texture);
|
|
|
|
}
|
2017-08-12 11:41:40 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
static const struct wlr_texture_impl texture_impl = {
|
|
|
|
.get_size = gles2_texture_get_size,
|
|
|
|
.write_pixels = gles2_texture_write_pixels,
|
|
|
|
.destroy = gles2_texture_destroy,
|
|
|
|
};
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
struct wlr_texture *wlr_gles2_texture_from_pixels(struct wlr_egl *egl,
|
2018-03-24 23:30:28 +01:00
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
|
|
|
|
uint32_t height, const void *data) {
|
2018-04-01 22:07:50 +02:00
|
|
|
assert(wlr_egl_is_current(egl));
|
2018-03-24 23:30:28 +01:00
|
|
|
|
|
|
|
const struct gles2_pixel_format *fmt = gles2_format_from_wl(wl_fmt);
|
|
|
|
if (fmt == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Unsupported pixel format %"PRIu32, wl_fmt);
|
|
|
|
return NULL;
|
2017-08-12 11:41:40 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture =
|
|
|
|
calloc(1, sizeof(struct wlr_gles2_texture));
|
|
|
|
if (texture == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed");
|
|
|
|
return NULL;
|
2017-08-09 21:25:34 +02:00
|
|
|
}
|
2018-03-24 23:30:28 +01:00
|
|
|
wlr_texture_init(&texture->wlr_texture, &texture_impl);
|
2018-04-01 22:07:50 +02:00
|
|
|
texture->egl = egl;
|
2018-03-24 23:30:28 +01:00
|
|
|
texture->width = width;
|
|
|
|
texture->height = height;
|
|
|
|
texture->type = WLR_GLES2_TEXTURE_GLTEX;
|
|
|
|
texture->has_alpha = fmt->has_alpha;
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
GLES2_DEBUG_PUSH;
|
2017-08-10 04:17:40 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glGenTextures(1, &texture->gl_tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture->gl_tex);
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride / (fmt->bpp / 8));
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, fmt->gl_format, width, height, 0,
|
|
|
|
fmt->gl_format, fmt->gl_type, data);
|
|
|
|
glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, 0);
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
GLES2_DEBUG_POP;
|
2018-04-01 05:20:00 +02:00
|
|
|
return &texture->wlr_texture;
|
2017-10-01 08:22:47 +02:00
|
|
|
}
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
struct wlr_texture *wlr_gles2_texture_from_wl_drm(struct wlr_egl *egl,
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wl_resource *data) {
|
2018-04-01 22:07:50 +02:00
|
|
|
assert(wlr_egl_is_current(egl));
|
2018-02-23 18:45:16 +01:00
|
|
|
|
2018-04-01 05:20:00 +02:00
|
|
|
if (!glEGLImageTargetTexture2DOES) {
|
2018-03-24 23:30:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-02-23 18:45:16 +01:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture =
|
|
|
|
calloc(1, sizeof(struct wlr_gles2_texture));
|
|
|
|
if (texture == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed");
|
|
|
|
return NULL;
|
2018-02-23 18:45:16 +01:00
|
|
|
}
|
2018-03-24 23:30:28 +01:00
|
|
|
wlr_texture_init(&texture->wlr_texture, &texture_impl);
|
2018-04-01 22:07:50 +02:00
|
|
|
texture->egl = egl;
|
2018-03-24 23:30:28 +01:00
|
|
|
texture->wl_drm = data;
|
2018-04-01 05:20:00 +02:00
|
|
|
|
|
|
|
EGLint fmt;
|
2018-04-01 22:07:50 +02:00
|
|
|
texture->image = wlr_egl_create_image_from_wl_drm(egl, data, &fmt,
|
2018-04-01 05:20:00 +02:00
|
|
|
&texture->width, &texture->height, &texture->inverted_y);
|
|
|
|
if (texture->image == NULL) {
|
|
|
|
free(texture);
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-02-23 18:45:16 +01:00
|
|
|
|
2018-03-15 11:22:08 +01:00
|
|
|
GLenum target;
|
2018-03-24 23:30:28 +01:00
|
|
|
switch (fmt) {
|
|
|
|
case EGL_TEXTURE_RGB:
|
|
|
|
case EGL_TEXTURE_RGBA:
|
2018-03-15 11:22:08 +01:00
|
|
|
target = GL_TEXTURE_2D;
|
2018-03-24 23:30:28 +01:00
|
|
|
texture->type = WLR_GLES2_TEXTURE_WL_DRM_GL;
|
|
|
|
texture->has_alpha = fmt == EGL_TEXTURE_RGBA;
|
|
|
|
break;
|
|
|
|
case EGL_TEXTURE_EXTERNAL_WL:
|
|
|
|
target = GL_TEXTURE_EXTERNAL_OES;
|
|
|
|
texture->type = WLR_GLES2_TEXTURE_WL_DRM_EXT;
|
|
|
|
texture->has_alpha = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wlr_log(L_ERROR, "Invalid or unsupported EGL buffer format");
|
|
|
|
free(texture);
|
|
|
|
return NULL;
|
2018-03-15 11:22:08 +01:00
|
|
|
}
|
2018-02-23 18:45:16 +01:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
GLES2_DEBUG_PUSH;
|
2017-08-15 13:58:07 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
glGenTextures(1, &texture->image_tex);
|
|
|
|
glBindTexture(target, texture->image_tex);
|
|
|
|
glEGLImageTargetTexture2DOES(target, texture->image);
|
2017-08-14 19:28:59 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
GLES2_DEBUG_POP;
|
2018-04-01 05:20:00 +02:00
|
|
|
return &texture->wlr_texture;
|
2017-08-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
struct wlr_texture *wlr_gles2_texture_from_dmabuf(struct wlr_egl *egl,
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_dmabuf_buffer_attribs *attribs) {
|
2018-04-01 22:07:50 +02:00
|
|
|
assert(wlr_egl_is_current(egl));
|
2017-08-08 18:02:14 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
if (!glEGLImageTargetTexture2DOES) {
|
|
|
|
return NULL;
|
2017-08-12 11:41:40 +02:00
|
|
|
}
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
if (!egl->egl_exts.dmabuf_import) {
|
2018-03-24 23:30:28 +01:00
|
|
|
wlr_log(L_ERROR, "Cannot create DMA-BUF texture: EGL extension "
|
|
|
|
"unavailable");
|
|
|
|
return NULL;
|
2017-08-12 11:41:40 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_gles2_texture *texture =
|
|
|
|
calloc(1, sizeof(struct wlr_gles2_texture));
|
|
|
|
if (texture == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed");
|
2017-08-15 07:56:47 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-03-20 19:14:33 +01:00
|
|
|
wlr_texture_init(&texture->wlr_texture, &texture_impl);
|
2018-04-01 22:07:50 +02:00
|
|
|
texture->egl = egl;
|
2018-03-24 23:30:28 +01:00
|
|
|
texture->width = attribs->width;
|
|
|
|
texture->height = attribs->height;
|
|
|
|
texture->type = WLR_GLES2_TEXTURE_DMABUF;
|
|
|
|
texture->has_alpha = true;
|
|
|
|
texture->inverted_y =
|
|
|
|
(attribs->flags & WLR_DMABUF_BUFFER_ATTRIBS_FLAGS_Y_INVERT) != 0;
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
texture->image = wlr_egl_create_image_from_dmabuf(egl, attribs);
|
2018-03-24 23:30:28 +01:00
|
|
|
if (texture->image == NULL) {
|
|
|
|
free(texture);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLES2_DEBUG_PUSH;
|
|
|
|
|
|
|
|
glGenTextures(1, &texture->image_tex);
|
|
|
|
glBindTexture(GL_TEXTURE_EXTERNAL_OES, texture->image_tex);
|
|
|
|
glEGLImageTargetTexture2DOES(GL_TEXTURE_EXTERNAL_OES, texture->image);
|
|
|
|
|
|
|
|
GLES2_DEBUG_POP;
|
2018-04-01 05:20:00 +02:00
|
|
|
return &texture->wlr_texture;
|
2017-08-08 18:02:14 +02:00
|
|
|
}
|