wlroots/include/wlr/render/gles2.h

38 lines
1013 B
C
Raw Normal View History

/*
* This an unstable interface of wlroots. No guarantees are made regarding the
* future consistency of this API.
*/
#ifndef WLR_USE_UNSTABLE
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
#endif
#ifndef WLR_RENDER_GLES2_H
#define WLR_RENDER_GLES2_H
#include <GLES2/gl2.h>
2017-08-11 02:15:37 +00:00
#include <wlr/backend.h>
#include <wlr/render/wlr_renderer.h>
2017-06-23 15:38:45 +00:00
2017-08-09 19:25:34 +00:00
struct wlr_egl;
2018-03-31 22:49:43 +00:00
struct wlr_renderer *wlr_gles2_renderer_create_with_drm_fd(int drm_fd);
2018-03-31 22:49:43 +00:00
struct wlr_renderer *wlr_gles2_renderer_create(struct wlr_egl *egl);
2017-06-23 15:38:45 +00:00
2019-11-07 18:38:45 +00:00
struct wlr_egl *wlr_gles2_renderer_get_egl(struct wlr_renderer *renderer);
bool wlr_gles2_renderer_check_ext(struct wlr_renderer *renderer,
const char *ext);
2019-11-07 18:38:45 +00:00
struct wlr_gles2_texture_attribs {
GLenum target; /* either GL_TEXTURE_2D or GL_TEXTURE_EXTERNAL_OES */
GLuint tex;
bool inverted_y;
bool has_alpha;
};
bool wlr_texture_is_gles2(struct wlr_texture *texture);
void wlr_gles2_texture_get_attribs(struct wlr_texture *texture,
struct wlr_gles2_texture_attribs *attribs);
2017-06-23 15:38:45 +00:00
#endif