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>
|
2023-06-02 12:10:35 +02:00
|
|
|
#include <time.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>
|
2021-08-11 10:00:50 +02:00
|
|
|
#include <wlr/util/addon.h>
|
2017-07-10 14:14:55 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2023-11-30 17:47:11 +01:00
|
|
|
#include "render/egl.h"
|
|
|
|
|
2023-06-02 12:10:35 +02:00
|
|
|
// mesa ships old GL headers that don't include this type, so for distros that use headers from
|
|
|
|
// mesa we need to def it ourselves until they update.
|
|
|
|
// https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23144
|
|
|
|
typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data);
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
struct wlr_gles2_pixel_format {
|
2021-02-16 19:12:04 +01:00
|
|
|
uint32_t drm_format;
|
2022-05-01 04:43:49 +02:00
|
|
|
// optional field, if empty then internalformat = format
|
|
|
|
GLint gl_internalformat;
|
2017-06-23 20:25:55 +02:00
|
|
|
GLint gl_format, gl_type;
|
|
|
|
};
|
|
|
|
|
2018-06-13 12:43:01 +02:00
|
|
|
struct wlr_gles2_tex_shader {
|
|
|
|
GLuint program;
|
|
|
|
GLint proj;
|
2023-05-23 08:16:29 +02:00
|
|
|
GLint tex_proj;
|
2018-06-13 12:43:01 +02:00
|
|
|
GLint tex;
|
|
|
|
GLint alpha;
|
2020-06-08 18:24:19 +02:00
|
|
|
GLint pos_attrib;
|
2018-06-13 12:43:01 +02:00
|
|
|
};
|
|
|
|
|
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;
|
2020-06-10 14:47:12 +02:00
|
|
|
int drm_fd;
|
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 {
|
2021-07-11 20:00:02 +02:00
|
|
|
bool EXT_read_format_bgra;
|
|
|
|
bool KHR_debug;
|
|
|
|
bool OES_egl_image_external;
|
|
|
|
bool OES_egl_image;
|
2021-07-30 05:55:57 +02:00
|
|
|
bool EXT_texture_type_2_10_10_10_REV;
|
|
|
|
bool OES_texture_half_float_linear;
|
2022-05-01 04:43:49 +02:00
|
|
|
bool EXT_texture_norm16;
|
2023-06-02 12:10:35 +02:00
|
|
|
bool EXT_disjoint_timer_query;
|
2018-10-31 17:20:27 +01:00
|
|
|
} exts;
|
|
|
|
|
2020-07-28 14:02:08 +02:00
|
|
|
struct {
|
|
|
|
PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
|
|
|
|
PFNGLDEBUGMESSAGECALLBACKKHRPROC glDebugMessageCallbackKHR;
|
|
|
|
PFNGLDEBUGMESSAGECONTROLKHRPROC glDebugMessageControlKHR;
|
|
|
|
PFNGLPOPDEBUGGROUPKHRPROC glPopDebugGroupKHR;
|
|
|
|
PFNGLPUSHDEBUGGROUPKHRPROC glPushDebugGroupKHR;
|
|
|
|
PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC glEGLImageTargetRenderbufferStorageOES;
|
2022-01-12 18:56:08 +01:00
|
|
|
PFNGLGETGRAPHICSRESETSTATUSKHRPROC glGetGraphicsResetStatusKHR;
|
2023-06-02 12:10:35 +02:00
|
|
|
PFNGLGENQUERIESEXTPROC glGenQueriesEXT;
|
|
|
|
PFNGLDELETEQUERIESEXTPROC glDeleteQueriesEXT;
|
|
|
|
PFNGLQUERYCOUNTEREXTPROC glQueryCounterEXT;
|
|
|
|
PFNGLGETQUERYOBJECTIVEXTPROC glGetQueryObjectivEXT;
|
|
|
|
PFNGLGETQUERYOBJECTUI64VEXTPROC glGetQueryObjectui64vEXT;
|
|
|
|
PFNGLGETINTEGER64VEXTPROC glGetInteger64vEXT;
|
2020-07-28 14:02:08 +02:00
|
|
|
} procs;
|
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
struct {
|
2018-06-03 00:20:09 +02:00
|
|
|
struct {
|
|
|
|
GLuint program;
|
|
|
|
GLint proj;
|
|
|
|
GLint color;
|
2020-06-08 18:24:19 +02:00
|
|
|
GLint pos_attrib;
|
2018-06-03 00:20:09 +02:00
|
|
|
} quad;
|
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
|
|
|
|
2020-07-28 16:56:23 +02:00
|
|
|
struct wl_list buffers; // wlr_gles2_buffer.link
|
2021-04-21 12:02:16 +02:00
|
|
|
struct wl_list textures; // wlr_gles2_texture.link
|
2017-08-11 04:15:37 +02:00
|
|
|
};
|
|
|
|
|
2023-06-02 12:10:35 +02:00
|
|
|
struct wlr_gles2_render_timer {
|
|
|
|
struct wlr_render_timer base;
|
|
|
|
struct wlr_gles2_renderer *renderer;
|
|
|
|
struct timespec cpu_start;
|
|
|
|
struct timespec cpu_end;
|
|
|
|
GLuint id;
|
|
|
|
GLint64 gl_cpu_end;
|
|
|
|
};
|
|
|
|
|
2020-07-28 16:56:23 +02:00
|
|
|
struct wlr_gles2_buffer {
|
|
|
|
struct wlr_buffer *buffer;
|
|
|
|
struct wlr_gles2_renderer *renderer;
|
|
|
|
struct wl_list link; // wlr_gles2_renderer.buffers
|
2023-11-30 16:13:14 +01:00
|
|
|
bool external_only;
|
2020-07-28 16:56:23 +02:00
|
|
|
|
|
|
|
EGLImageKHR image;
|
|
|
|
GLuint rbo;
|
|
|
|
GLuint fbo;
|
2023-06-25 11:36:11 +02:00
|
|
|
GLuint tex;
|
2020-07-28 16:56:23 +02:00
|
|
|
|
2021-08-11 10:00:50 +02:00
|
|
|
struct wlr_addon addon;
|
2020-07-28 16:56:23 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:25:26 +02:00
|
|
|
struct wlr_gles2_texture {
|
|
|
|
struct wlr_texture wlr_texture;
|
2020-07-28 13:56:29 +02:00
|
|
|
struct wlr_gles2_renderer *renderer;
|
2021-04-21 12:02:16 +02:00
|
|
|
struct wl_list link; // wlr_gles2_renderer.textures
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2019-11-06 09:28:43 +01:00
|
|
|
GLenum target;
|
2023-12-01 01:56:41 +01:00
|
|
|
|
|
|
|
// If this texture is imported from a buffer, the texture is does not own
|
|
|
|
// these states. These cannot be destroyed along with the texture in this
|
|
|
|
// case.
|
2019-11-06 09:28:43 +01:00
|
|
|
GLuint tex;
|
2023-12-01 01:56:41 +01:00
|
|
|
GLuint fbo;
|
2019-11-06 09:28:43 +01:00
|
|
|
|
|
|
|
bool has_alpha;
|
|
|
|
|
2023-11-30 16:38:25 +01:00
|
|
|
uint32_t drm_format; // for mutable textures only, used to interpret upload data
|
|
|
|
struct wlr_gles2_buffer *buffer; // for DMA-BUF imports only
|
2017-06-23 20:25:55 +02:00
|
|
|
};
|
|
|
|
|
2023-05-28 20:53:26 +02:00
|
|
|
struct wlr_gles2_render_pass {
|
|
|
|
struct wlr_render_pass base;
|
|
|
|
struct wlr_gles2_buffer *buffer;
|
|
|
|
float projection_matrix[9];
|
2023-11-30 17:47:11 +01:00
|
|
|
struct wlr_egl_context prev_ctx;
|
2023-06-02 12:10:35 +02:00
|
|
|
struct wlr_gles2_render_timer *timer;
|
2023-05-28 20:53:26 +02:00
|
|
|
};
|
2021-07-30 05:53:22 +02:00
|
|
|
|
|
|
|
bool is_gles2_pixel_format_supported(const struct wlr_gles2_renderer *renderer,
|
|
|
|
const struct wlr_gles2_pixel_format *format);
|
2021-02-16 19:17:18 +01:00
|
|
|
const struct wlr_gles2_pixel_format *get_gles2_format_from_drm(uint32_t 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);
|
2021-07-30 05:53:22 +02:00
|
|
|
const uint32_t *get_gles2_shm_formats(const struct wlr_gles2_renderer *renderer,
|
|
|
|
size_t *len);
|
2017-06-23 20:25:55 +02:00
|
|
|
|
2023-11-29 19:58:42 +01:00
|
|
|
GLuint gles2_buffer_get_fbo(struct wlr_gles2_buffer *buffer);
|
|
|
|
|
2020-07-28 13:45:24 +02:00
|
|
|
struct wlr_gles2_renderer *gles2_get_renderer(
|
|
|
|
struct wlr_renderer *wlr_renderer);
|
2023-06-02 12:10:35 +02:00
|
|
|
struct wlr_gles2_render_timer *gles2_get_render_timer(
|
|
|
|
struct wlr_render_timer *timer);
|
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);
|
2023-06-25 11:36:11 +02:00
|
|
|
struct wlr_gles2_buffer *gles2_buffer_get_or_create(struct wlr_gles2_renderer *renderer,
|
|
|
|
struct wlr_buffer *wlr_buffer);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2021-04-12 11:58:31 +02:00
|
|
|
struct wlr_texture *gles2_texture_from_buffer(struct wlr_renderer *wlr_renderer,
|
|
|
|
struct wlr_buffer *buffer);
|
2021-05-29 10:25:25 +02:00
|
|
|
void gles2_texture_destroy(struct wlr_gles2_texture *texture);
|
2020-07-28 13:45:24 +02:00
|
|
|
|
2020-07-28 13:58:07 +02:00
|
|
|
void push_gles2_debug_(struct wlr_gles2_renderer *renderer,
|
|
|
|
const char *file, const char *func);
|
|
|
|
#define push_gles2_debug(renderer) push_gles2_debug_(renderer, _WLR_FILENAME, __func__)
|
|
|
|
void pop_gles2_debug(struct wlr_gles2_renderer *renderer);
|
2017-06-09 16:28:50 +02:00
|
|
|
|
2023-06-02 12:10:35 +02:00
|
|
|
struct wlr_gles2_render_pass *begin_gles2_buffer_pass(struct wlr_gles2_buffer *buffer,
|
2023-11-30 17:47:11 +01:00
|
|
|
struct wlr_egl_context *prev_ctx, struct wlr_gles2_render_timer *timer);
|
2023-05-28 20:53:26 +02:00
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#endif
|