wlroots-hyprland/include/render/gles2.h

81 lines
1.7 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>
#include <wlr/render/gles2.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 gles2_pixel_format {
uint32_t wl_format;
GLint gl_format, gl_type;
int depth, bpp;
bool has_alpha;
};
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-27 23:02:48 +02:00
const char *exts_str;
struct {
GLuint quad;
GLuint ellipse;
GLuint tex_rgba;
GLuint tex_rgbx;
GLuint tex_ext;
} shaders;
2017-08-11 04:15:37 +02:00
};
enum wlr_gles2_texture_type {
WLR_GLES2_TEXTURE_GLTEX,
WLR_GLES2_TEXTURE_WL_DRM_GL,
WLR_GLES2_TEXTURE_WL_DRM_EXT,
WLR_GLES2_TEXTURE_DMABUF,
};
2017-08-14 14:25:26 +02:00
struct wlr_gles2_texture {
struct wlr_texture wlr_texture;
struct wlr_egl *egl;
enum wlr_gles2_texture_type type;
int width, height;
bool has_alpha;
bool inverted_y;
// Not set if WLR_GLES2_TEXTURE_GLTEX
2017-08-09 21:25:34 +02:00
EGLImageKHR image;
GLuint image_tex;
union {
GLuint gl_tex;
struct wl_resource *wl_drm;
};
};
const struct gles2_pixel_format *gles2_format_from_wl(enum wl_shm_format fmt);
const enum wl_shm_format *gles2_formats(size_t *len);
struct wlr_gles2_texture *gles2_get_texture_in_context(
struct wlr_texture *wlr_texture);
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
#endif