2017-09-23 10:26:01 +02:00
|
|
|
#ifndef RENDER_GLES2_H
|
|
|
|
#define RENDER_GLES2_H
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.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>
|
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
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
extern PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
|
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
struct gles2_pixel_format {
|
2017-06-23 20:25:55 +02:00
|
|
|
uint32_t wl_format;
|
|
|
|
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
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
struct {
|
|
|
|
GLuint quad;
|
|
|
|
GLuint ellipse;
|
|
|
|
GLuint tex_rgba;
|
|
|
|
GLuint tex_rgbx;
|
|
|
|
GLuint tex_ext;
|
|
|
|
} shaders;
|
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;
|
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
struct wlr_egl *egl;
|
2017-06-08 21:52:42 +02:00
|
|
|
GLuint tex_id;
|
2018-03-20 19:14:33 +01:00
|
|
|
const struct gles2_pixel_format *pixel_format;
|
2017-08-09 21:25:34 +02:00
|
|
|
EGLImageKHR image;
|
2018-03-20 13:06:53 +01:00
|
|
|
GLenum target;
|
2017-06-23 20:25:55 +02:00
|
|
|
};
|
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
const struct gles2_pixel_format *gles2_format_from_wl(enum wl_shm_format fmt);
|
2018-03-21 08:50:59 +01:00
|
|
|
const enum wl_shm_format *gles2_formats(size_t *len);
|
2017-06-23 20:25:55 +02:00
|
|
|
|
2017-08-19 08:10:39 +02:00
|
|
|
struct wlr_texture *gles2_texture_create();
|
2018-03-20 19:14:33 +01:00
|
|
|
struct wlr_gles2_texture *gles2_get_texture(struct wlr_texture *wlr_texture);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
void gles2_push_marker(const char *file, const char *func);
|
|
|
|
void gles2_pop_marker(void);
|
|
|
|
#define GLES2_DEBUG_PUSH gles2_push_marker(wlr_strip_path(__FILE__), __func__)
|
|
|
|
#define GLES2_DEBUG_POP gles2_pop_marker()
|
2017-06-09 16:28:50 +02:00
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#endif
|