2017-09-23 10:26:01 +02:00
|
|
|
#ifndef RENDER_GLES2_H
|
|
|
|
#define RENDER_GLES2_H
|
|
|
|
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <GLES2/gl2.h>
|
|
|
|
#include <GLES2/gl2ext.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2017-08-11 04:15:37 +02:00
|
|
|
#include <wlr/backend.h>
|
2017-10-21 03:48:58 +02:00
|
|
|
#include <wlr/render/egl.h>
|
2018-04-01 22:07:50 +02:00
|
|
|
#include <wlr/render/gles2.h>
|
2017-08-14 14:37:50 +02:00
|
|
|
#include <wlr/render/interface.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/render/wlr_texture.h>
|
2017-07-10 14:14:55 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2019-11-10 14:31:33 +01:00
|
|
|
struct wlr_gles2_procs {
|
|
|
|
PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
|
|
|
|
PFNGLDEBUGMESSAGECALLBACKKHRPROC glDebugMessageCallbackKHR;
|
|
|
|
PFNGLDEBUGMESSAGECONTROLKHRPROC glDebugMessageControlKHR;
|
|
|
|
PFNGLPOPDEBUGGROUPKHRPROC glPopDebugGroupKHR;
|
|
|
|
PFNGLPUSHDEBUGGROUPKHRPROC glPushDebugGroupKHR;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct wlr_gles2_procs gles2_procs;
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
struct wlr_gles2_pixel_format {
|
2018-10-16 09:35:28 +02:00
|
|
|
enum wl_shm_format wl_format;
|
2017-06-23 20:25:55 +02:00
|
|
|
GLint gl_format, gl_type;
|
|
|
|
int depth, bpp;
|
2018-03-21 08:50:59 +01:00
|
|
|
bool has_alpha;
|
2017-06-23 20:25:55 +02:00
|
|
|
};
|
|
|
|
|
2018-06-13 12:43:01 +02:00
|
|
|
struct wlr_gles2_tex_shader {
|
|
|
|
GLuint program;
|
|
|
|
GLint proj;
|
|
|
|
GLint invert_y;
|
|
|
|
GLint tex;
|
|
|
|
GLint alpha;
|
|
|
|
};
|
|
|
|
|
2017-08-14 14:37:50 +02:00
|
|
|
struct wlr_gles2_renderer {
|
|
|
|
struct wlr_renderer wlr_renderer;
|
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
struct wlr_egl *egl;
|
2018-03-20 19:14:33 +01:00
|
|
|
|
2020-04-21 14:52:47 +02:00
|
|
|
const char *exts_str;
|
2018-10-31 17:20:27 +01:00
|
|
|
struct {
|
|
|
|
bool read_format_bgra_ext;
|
|
|
|
bool debug_khr;
|
2018-11-01 18:03:32 +01:00
|
|
|
bool egl_image_external_oes;
|
2018-10-31 17:20:27 +01:00
|
|
|
} exts;
|
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
struct {
|
2018-06-03 00:20:09 +02:00
|
|
|
struct {
|
|
|
|
GLuint program;
|
|
|
|
GLint proj;
|
|
|
|
GLint color;
|
|
|
|
} quad;
|
|
|
|
struct {
|
|
|
|
GLuint program;
|
|
|
|
GLint proj;
|
|
|
|
GLint color;
|
|
|
|
} ellipse;
|
2018-06-13 12:43:01 +02:00
|
|
|
struct wlr_gles2_tex_shader tex_rgba;
|
|
|
|
struct wlr_gles2_tex_shader tex_rgbx;
|
|
|
|
struct wlr_gles2_tex_shader tex_ext;
|
2018-03-20 19:14:33 +01:00
|
|
|
} shaders;
|
2018-04-13 01:38:33 +02:00
|
|
|
|
|
|
|
uint32_t viewport_width, viewport_height;
|
2017-08-11 04:15:37 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:25:26 +02:00
|
|
|
struct wlr_gles2_texture {
|
|
|
|
struct wlr_texture wlr_texture;
|
2018-04-01 22:07:50 +02:00
|
|
|
struct wlr_egl *egl;
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
// Basically:
|
|
|
|
// GL_TEXTURE_2D == mutable
|
|
|
|
// GL_TEXTURE_EXTERNAL_OES == immutable
|
|
|
|
GLenum target;
|
|
|
|
GLuint tex;
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
EGLImageKHR image;
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
bool inverted_y;
|
|
|
|
bool has_alpha;
|
|
|
|
|
|
|
|
// Only affects target == GL_TEXTURE_2D
|
|
|
|
enum wl_shm_format wl_format; // used to interpret upload data
|
2017-06-23 20:25:55 +02:00
|
|
|
};
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
const struct wlr_gles2_pixel_format *get_gles2_format_from_wl(
|
|
|
|
enum wl_shm_format fmt);
|
2018-10-31 17:20:27 +01:00
|
|
|
const struct wlr_gles2_pixel_format *get_gles2_format_from_gl(
|
|
|
|
GLint gl_format, GLint gl_type, bool alpha);
|
|
|
|
const enum wl_shm_format *get_gles2_wl_formats(size_t *len);
|
2017-06-23 20:25:55 +02:00
|
|
|
|
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);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
void push_gles2_marker(const char *file, const char *func);
|
|
|
|
void pop_gles2_marker(void);
|
2019-07-16 19:04:27 +02:00
|
|
|
#define PUSH_GLES2_DEBUG push_gles2_marker(_WLR_FILENAME, __func__)
|
2018-04-26 00:24:58 +02:00
|
|
|
#define POP_GLES2_DEBUG pop_gles2_marker()
|
2017-06-09 16:28:50 +02:00
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#endif
|