wlroots-hyprland/include/render/gles2.h

71 lines
1.5 KiB
C
Raw Normal View History

#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>
#include <wlr/render/wlr_renderer.h>
#include <wlr/render/wlr_texture.h>
#include <wlr/util/log.h>
2017-08-09 21:25:34 +02:00
extern PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
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;
GLuint tex_id;
const struct pixel_format *pixel_format;
2017-08-09 21:25:34 +02:00
EGLImageKHR image;
};
struct shaders {
bool initialized;
GLuint rgba, rgbx;
GLuint quad;
GLuint ellipse;
2017-08-10 11:03:15 +02:00
GLuint external;
};
extern struct shaders shaders;
const struct pixel_format *gl_format_for_wl_format(enum wl_shm_format fmt);
struct wlr_texture *gles2_texture_create();
extern const GLchar quad_vertex_src[];
extern const GLchar quad_fragment_src[];
extern const GLchar ellipse_fragment_src[];
extern const GLchar vertex_src[];
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-23 17:38:45 +02:00
bool _gles2_flush_errors(const char *file, int line);
#define gles2_flush_errors(...) \
_gles2_flush_errors(wlr_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
#endif