2017-06-08 21:52:42 +02:00
|
|
|
#ifndef _WLR_RENDER_GLES2_INTERNAL_H
|
|
|
|
#define _WLR_RENDER_GLES2_INTERNAL_H
|
|
|
|
#include <stdint.h>
|
2017-06-09 16:28:50 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
2017-06-23 17:38:45 +02:00
|
|
|
#include <GLES2/gl2.h>
|
2017-08-09 21:25:34 +02:00
|
|
|
#include <GLES2/gl2ext.h>
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
2017-08-11 04:15:37 +02:00
|
|
|
#include <wlr/egl.h>
|
|
|
|
#include <wlr/backend.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <wlr/render.h>
|
2017-08-14 14:37:50 +02:00
|
|
|
#include <wlr/render/interface.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;
|
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
struct pixel_format {
|
|
|
|
uint32_t wl_format;
|
|
|
|
GLint gl_format, gl_type;
|
|
|
|
int depth, bpp;
|
|
|
|
GLuint *shader;
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
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;
|
2017-06-23 20:25:55 +02:00
|
|
|
const struct pixel_format *pixel_format;
|
2017-08-09 21:25:34 +02:00
|
|
|
EGLImageKHR image;
|
2017-06-23 20:25:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct shaders {
|
|
|
|
bool initialized;
|
|
|
|
GLuint rgba, rgbx;
|
|
|
|
GLuint quad;
|
|
|
|
GLuint ellipse;
|
2017-08-10 11:03:15 +02:00
|
|
|
GLuint external;
|
2017-06-08 21:52:42 +02:00
|
|
|
};
|
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
extern struct shaders shaders;
|
|
|
|
|
|
|
|
const struct pixel_format *gl_format_for_wl_format(enum wl_shm_format fmt);
|
|
|
|
|
2017-08-19 08:10:39 +02:00
|
|
|
struct wlr_texture *gles2_texture_create();
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-06-15 21:31:13 +02:00
|
|
|
extern const GLchar quad_vertex_src[];
|
|
|
|
extern const GLchar quad_fragment_src[];
|
|
|
|
extern const GLchar ellipse_fragment_src[];
|
2017-06-08 21:52:42 +02:00
|
|
|
extern const GLchar vertex_src[];
|
2017-06-23 20:25:55 +02:00
|
|
|
extern const GLchar fragment_src_rgba[];
|
|
|
|
extern const GLchar fragment_src_rgbx[];
|
2017-08-09 21:25:34 +02:00
|
|
|
extern const GLchar fragment_src_external[];
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-06-23 17:38:45 +02:00
|
|
|
bool _gles2_flush_errors(const char *file, int line);
|
|
|
|
#define gles2_flush_errors(...) \
|
2017-07-10 14:14:55 +02:00
|
|
|
_gles2_flush_errors(_strip_path(__FILE__), __LINE__)
|
2017-06-09 16:28:50 +02:00
|
|
|
|
2017-06-23 17:38:45 +02:00
|
|
|
#define GL_CALL(func) func; gles2_flush_errors()
|
2017-06-09 16:28:50 +02:00
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#endif
|