wlroots/include/render/gles2.h

30 lines
760 B
C
Raw Normal View History

#ifndef _WLR_RENDER_GLES2_INTERNAL_H
#define _WLR_RENDER_GLES2_INTERNAL_H
#include <stdint.h>
2017-06-09 14:28:50 +00:00
#include <string.h>
#include <stdbool.h>
2017-06-23 15:38:45 +00:00
#include <GLES2/gl2.h>
#include <wlr/render.h>
struct wlr_surface_state {
struct wlr_surface *wlr_surface;
GLuint tex_id;
};
2017-06-23 15:38:45 +00:00
struct wlr_surface *gles2_surface_init();
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_RGB[];
extern const GLchar fragment_src_RGBA[];
2017-06-23 15:38:45 +00:00
bool _gles2_flush_errors(const char *file, int line);
#define gles2_flush_errors(...) \
_gles2_flush_errors(__FILE__ + strlen(WLR_SRC_DIR) + 1, __LINE__)
2017-06-09 14:28:50 +00:00
2017-06-23 15:38:45 +00:00
#define GL_CALL(func) func; gles2_flush_errors()
2017-06-09 14:28:50 +00:00
#endif