diff options
author | nyorain <nyorain@gmail.com> | 2017-08-09 21:25:34 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-08-10 10:59:58 +0200 |
commit | 67369173aaafd763a6369a84917ae457c7095a72 (patch) | |
tree | c42bbcebd5b1e972c422386ce46f353c2f3a31ca /include/render | |
parent | 750d0ad4583732ee24c998f46a62fc684f86bc48 (diff) |
Implement drm (egl) buffer attaching
Diffstat (limited to 'include/render')
-rw-r--r-- | include/render/gles2.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/render/gles2.h b/include/render/gles2.h index 41af0593..7ad4ad2e 100644 --- a/include/render/gles2.h +++ b/include/render/gles2.h @@ -4,9 +4,14 @@ #include <string.h> #include <stdbool.h> #include <GLES2/gl2.h> +#include <GLES2/gl2ext.h> +#include <EGL/egl.h> +#include <EGL/eglext.h> #include <wlr/render.h> #include <wlr/util/log.h> +extern PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES; + struct pixel_format { uint32_t wl_format; GLint gl_format, gl_type; @@ -18,6 +23,7 @@ struct wlr_texture_state { struct wlr_texture *wlr_texture; GLuint tex_id; const struct pixel_format *pixel_format; + EGLImageKHR image; }; struct shaders { @@ -25,6 +31,7 @@ struct shaders { GLuint rgba, rgbx; GLuint quad; GLuint ellipse; + Gluint external; }; extern struct shaders shaders; @@ -39,6 +46,7 @@ extern const GLchar ellipse_fragment_src[]; extern const GLchar vertex_src[]; extern const GLchar fragment_src_rgba[]; extern const GLchar fragment_src_rgbx[]; +extern const GLchar fragment_src_external[]; bool _gles2_flush_errors(const char *file, int line); #define gles2_flush_errors(...) \ |