wlroots-hyprland/render/gles2/texture.c

261 lines
8.8 KiB
C
Raw Normal View History

#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <wayland-util.h>
#include <wayland-server-protocol.h>
2017-08-11 04:15:37 +02:00
#include <wlr/egl.h>
#include <wlr/render.h>
#include <wlr/render/interface.h>
#include <wlr/render/matrix.h>
#include <wlr/util/log.h>
#include "render/gles2.h"
2017-08-09 21:25:34 +02:00
static struct pixel_format external_pixel_format = {
.wl_format = 0,
.depth = 0,
.bpp = 0,
.gl_format = 0,
.gl_type = 0,
.shader = &shaders.external
};
2017-08-14 14:25:26 +02:00
static void gles2_texture_ensure_texture(struct wlr_gles2_texture *texture) {
if (texture->tex_id) {
2017-08-09 21:25:34 +02:00
return;
2017-08-10 11:05:18 +02:00
}
2017-08-14 14:25:26 +02:00
GL_CALL(glGenTextures(1, &texture->tex_id));
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
2017-08-09 21:25:34 +02:00
GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE));
GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE));
}
2017-08-14 14:25:26 +02:00
static bool gles2_texture_upload_pixels(struct wlr_texture *_texture,
enum wl_shm_format format, int stride, int width, int height,
const unsigned char *pixels) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
assert(texture);
const struct pixel_format *fmt = gl_format_for_wl_format(format);
if (!fmt || !fmt->gl_format) {
wlr_log(L_ERROR, "No supported pixel format for this texture");
return false;
}
2017-08-14 14:25:26 +02:00
texture->wlr_texture.width = width;
texture->wlr_texture.height = height;
texture->wlr_texture.format = format;
texture->pixel_format = fmt;
2017-08-09 21:25:34 +02:00
2017-08-11 15:00:26 +02:00
gles2_texture_ensure_texture(texture);
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride));
GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, fmt->gl_format, width, height, 0,
fmt->gl_format, fmt->gl_type, pixels));
2017-08-14 14:25:26 +02:00
texture->wlr_texture.valid = true;
return true;
}
2017-08-14 14:25:26 +02:00
static bool gles2_texture_update_pixels(struct wlr_texture *_texture,
2017-08-10 04:17:40 +02:00
enum wl_shm_format format, int stride, int x, int y,
int width, int height, const unsigned char *pixels) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
assert(texture);
2017-08-10 04:17:40 +02:00
// TODO: Test if the unpack subimage extension is supported and adjust the
// upload strategy if not
2017-08-14 14:25:26 +02:00
if (!texture->wlr_texture.valid
|| texture->wlr_texture.format != format
2017-08-10 14:26:16 +02:00
/* || unpack not supported */) {
2017-08-14 14:25:26 +02:00
return gles2_texture_upload_pixels(&texture->wlr_texture,
format, stride, width, height, pixels);
2017-08-10 04:17:40 +02:00
}
const struct pixel_format *fmt = texture->pixel_format;
2017-08-10 04:17:40 +02:00
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, stride));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, x));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, y));
GL_CALL(glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height,
fmt->gl_format, fmt->gl_type, pixels));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, 0));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, 0));
return true;
}
2017-08-14 14:25:26 +02:00
static bool gles2_texture_upload_shm(struct wlr_texture *_texture,
uint32_t format, struct wl_shm_buffer *buffer) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
const struct pixel_format *fmt = gl_format_for_wl_format(format);
if (!fmt || !fmt->gl_format) {
wlr_log(L_ERROR, "No supported pixel format for this texture");
return false;
}
wl_shm_buffer_begin_access(buffer);
uint8_t *pixels = wl_shm_buffer_get_data(buffer);
int width = wl_shm_buffer_get_width(buffer);
int height = wl_shm_buffer_get_height(buffer);
int pitch = wl_shm_buffer_get_stride(buffer) / (fmt->bpp / 8);
2017-08-14 14:25:26 +02:00
texture->wlr_texture.width = width;
texture->wlr_texture.height = height;
texture->wlr_texture.format = format;
texture->pixel_format = fmt;
2017-08-11 15:00:26 +02:00
gles2_texture_ensure_texture(texture);
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, pitch));
2017-08-10 04:17:40 +02:00
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, 0));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, 0));
GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, fmt->gl_format, width, height, 0,
fmt->gl_format, fmt->gl_type, pixels));
2017-08-14 14:25:26 +02:00
texture->wlr_texture.valid = true;
wl_shm_buffer_end_access(buffer);
return true;
}
2017-08-14 14:25:26 +02:00
static bool gles2_texture_update_shm(struct wlr_texture *_texture,
2017-08-10 04:17:40 +02:00
uint32_t format, int x, int y, int width, int height,
struct wl_shm_buffer *buffer) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
2017-08-10 04:17:40 +02:00
// TODO: Test if the unpack subimage extension is supported and adjust the
// upload strategy if not
2017-08-10 14:26:16 +02:00
assert(texture);
2017-08-14 14:25:26 +02:00
if (!texture->wlr_texture.valid
|| texture->wlr_texture.format != format
2017-08-10 14:26:16 +02:00
/* || unpack not supported */) {
2017-08-14 14:25:26 +02:00
return gles2_texture_upload_shm(&texture->wlr_texture, format, buffer);
2017-08-10 04:17:40 +02:00
}
const struct pixel_format *fmt = texture->pixel_format;
2017-08-10 04:17:40 +02:00
wl_shm_buffer_begin_access(buffer);
uint8_t *pixels = wl_shm_buffer_get_data(buffer);
int pitch = wl_shm_buffer_get_stride(buffer) / (fmt->bpp / 8);
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, pitch));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, x));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, y));
2017-08-10 14:26:16 +02:00
GL_CALL(glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height,
fmt->gl_format, fmt->gl_type, pixels));
2017-08-10 04:17:40 +02:00
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_PIXELS_EXT, 0));
GL_CALL(glPixelStorei(GL_UNPACK_SKIP_ROWS_EXT, 0));
wl_shm_buffer_end_access(buffer);
2017-08-09 21:25:34 +02:00
return true;
}
2017-08-14 14:25:26 +02:00
static bool gles2_texture_upload_drm(struct wlr_texture *_tex,
2017-08-11 04:15:37 +02:00
struct wl_resource *buf) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *tex = (struct wlr_gles2_texture *)_tex;
2017-08-09 21:25:34 +02:00
if (!glEGLImageTargetTexture2DOES) {
return false;
}
EGLint format;
2017-08-11 04:15:37 +02:00
if (!wlr_egl_query_buffer(tex->egl, buf, EGL_TEXTURE_FORMAT, &format)) {
2017-08-09 21:25:34 +02:00
wlr_log(L_INFO, "upload_drm called with no drm buffer");
return false;
}
2017-08-11 04:15:37 +02:00
wlr_egl_query_buffer(tex->egl, buf, EGL_WIDTH,
2017-08-14 14:25:26 +02:00
(EGLint*)&tex->wlr_texture.width);
2017-08-11 04:15:37 +02:00
wlr_egl_query_buffer(tex->egl, buf, EGL_HEIGHT,
2017-08-14 14:25:26 +02:00
(EGLint*)&tex->wlr_texture.height);
2017-08-09 21:25:34 +02:00
EGLint inverted_y;
2017-08-11 04:15:37 +02:00
wlr_egl_query_buffer(tex->egl, buf, EGL_WAYLAND_Y_INVERTED_WL, &inverted_y);
2017-08-09 21:25:34 +02:00
GLenum target;
const struct pixel_format *pf;
switch (format) {
case EGL_TEXTURE_RGB:
case EGL_TEXTURE_RGBA:
target = GL_TEXTURE_2D;
pf = gl_format_for_wl_format(WL_SHM_FORMAT_ARGB8888);
break;
case EGL_TEXTURE_EXTERNAL_WL:
target = GL_TEXTURE_EXTERNAL_OES;
pf = &external_pixel_format;
break;
default:
wlr_log(L_ERROR, "invalid/unsupported egl buffer format");
return false;
}
2017-08-11 15:00:26 +02:00
gles2_texture_ensure_texture(tex);
2017-08-11 04:15:37 +02:00
GL_CALL(glBindTexture(GL_TEXTURE_2D, tex->tex_id));
2017-08-09 21:25:34 +02:00
EGLint attribs[] = { EGL_WAYLAND_PLANE_WL, 0, EGL_NONE };
2017-08-12 11:41:40 +02:00
if (tex->image) {
wlr_egl_destroy_image(tex->egl, tex->image);
}
2017-08-11 04:15:37 +02:00
tex->image = wlr_egl_create_image(tex->egl, EGL_WAYLAND_BUFFER_WL,
2017-08-09 21:25:34 +02:00
(EGLClientBuffer*) buf, attribs);
2017-08-11 04:15:37 +02:00
if (!tex->image) {
2017-08-09 21:25:34 +02:00
wlr_log(L_ERROR, "failed to create egl image: %s", egl_error());
return false;
}
GL_CALL(glActiveTexture(GL_TEXTURE0));
2017-08-11 04:15:37 +02:00
GL_CALL(glBindTexture(target, tex->tex_id));
GL_CALL(glEGLImageTargetTexture2DOES(target, tex->image));
2017-08-14 14:25:26 +02:00
tex->wlr_texture.valid = true;
2017-08-11 04:15:37 +02:00
tex->pixel_format = pf;
2017-08-09 21:25:34 +02:00
2017-08-10 04:17:40 +02:00
return true;
}
2017-08-14 14:25:26 +02:00
static void gles2_texture_get_matrix(struct wlr_texture *_texture,
float (*matrix)[16], const float (*projection)[16], int x, int y) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
float world[16];
wlr_matrix_identity(matrix);
wlr_matrix_translate(&world, x, y, 0);
wlr_matrix_mul(matrix, &world, matrix);
2017-08-14 14:25:26 +02:00
wlr_matrix_scale(&world,
texture->wlr_texture.width, texture->wlr_texture.height, 1);
wlr_matrix_mul(matrix, &world, matrix);
wlr_matrix_mul(projection, matrix, matrix);
}
2017-08-14 14:25:26 +02:00
static void gles2_texture_bind(struct wlr_texture *_texture) {
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
GL_CALL(glBindTexture(GL_TEXTURE_2D, texture->tex_id));
GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
GL_CALL(glUseProgram(*texture->pixel_format->shader));
}
2017-08-14 14:25:26 +02:00
static void gles2_texture_destroy(struct wlr_texture *_texture) {
struct wlr_gles2_texture *texture = (struct wlr_gles2_texture *)_texture;
wl_signal_emit(&texture->wlr_texture.destroy_signal, &texture->wlr_texture);
2017-08-12 11:41:40 +02:00
if (texture->tex_id) {
GL_CALL(glDeleteTextures(1, &texture->tex_id));
}
if (texture->image) {
wlr_egl_destroy_image(texture->egl, texture->image);
}
free(texture);
}
static struct wlr_texture_impl wlr_texture_impl = {
.upload_pixels = gles2_texture_upload_pixels,
2017-08-10 04:17:40 +02:00
.update_pixels = gles2_texture_update_pixels,
.upload_shm = gles2_texture_upload_shm,
2017-08-10 04:17:40 +02:00
.update_shm = gles2_texture_update_shm,
2017-08-09 21:25:34 +02:00
.upload_drm = gles2_texture_upload_drm,
.get_matrix = gles2_texture_get_matrix,
.bind = gles2_texture_bind,
.destroy = gles2_texture_destroy,
};
2017-08-11 04:15:37 +02:00
struct wlr_texture *gles2_texture_init(struct wlr_egl *egl) {
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture *texture =
calloc(1, sizeof(struct wlr_gles2_texture));
wlr_texture_init(&texture->wlr_texture, &wlr_texture_impl);
texture->egl = egl;
return &texture->wlr_texture;
}