2018-07-13 12:40:56 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2018-02-12 20:29:23 +00:00
|
|
|
#ifndef WLR_RENDER_EGL_H
|
|
|
|
#define WLR_RENDER_EGL_H
|
2017-05-03 05:04:41 +00:00
|
|
|
|
2019-10-16 13:16:53 +00:00
|
|
|
#ifndef MESA_EGL_NO_X11_HEADERS
|
2018-11-09 19:31:11 +00:00
|
|
|
#define MESA_EGL_NO_X11_HEADERS
|
|
|
|
#endif
|
2019-10-16 13:16:53 +00:00
|
|
|
#ifndef EGL_NO_X11
|
|
|
|
#define EGL_NO_X11
|
|
|
|
#endif
|
2020-11-02 09:51:52 +00:00
|
|
|
#ifndef EGL_NO_PLATFORM_SPECIFIC_TYPES
|
|
|
|
#define EGL_NO_PLATFORM_SPECIFIC_TYPES
|
|
|
|
#endif
|
2018-11-09 19:31:11 +00:00
|
|
|
|
2020-05-11 06:58:30 +00:00
|
|
|
#include <wlr/config.h>
|
|
|
|
|
2017-05-03 05:04:41 +00:00
|
|
|
#include <EGL/egl.h>
|
2017-08-09 19:25:34 +00:00
|
|
|
#include <EGL/eglext.h>
|
2018-02-09 21:54:14 +00:00
|
|
|
#include <pixman.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <stdbool.h>
|
2019-07-27 08:53:54 +00:00
|
|
|
#include <wayland-server-core.h>
|
2018-05-29 21:38:00 +00:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2019-04-01 16:17:23 +00:00
|
|
|
#include <wlr/render/drm_format_set.h>
|
2017-05-03 05:04:41 +00:00
|
|
|
|
|
|
|
struct wlr_egl {
|
|
|
|
EGLDisplay display;
|
|
|
|
EGLContext context;
|
2020-06-10 12:26:39 +00:00
|
|
|
EGLDeviceEXT device; // may be EGL_NO_DEVICE_EXT
|
2021-01-20 20:20:55 +00:00
|
|
|
struct gbm_device *gbm_device;
|
2017-08-09 19:25:34 +00:00
|
|
|
|
2018-01-20 23:06:35 +00:00
|
|
|
struct {
|
2020-06-10 12:26:39 +00:00
|
|
|
// Display extensions
|
2021-07-11 17:55:32 +00:00
|
|
|
bool KHR_image_base;
|
|
|
|
bool EXT_image_dma_buf_import;
|
|
|
|
bool EXT_image_dma_buf_import_modifiers;
|
2020-06-10 12:26:39 +00:00
|
|
|
|
|
|
|
// Device extensions
|
2021-07-11 17:55:32 +00:00
|
|
|
bool EXT_device_drm;
|
2018-06-07 23:17:45 +00:00
|
|
|
} exts;
|
2017-08-09 19:25:34 +00:00
|
|
|
|
2019-11-10 13:31:33 +00:00
|
|
|
struct {
|
|
|
|
PFNEGLGETPLATFORMDISPLAYEXTPROC eglGetPlatformDisplayEXT;
|
|
|
|
PFNEGLCREATEIMAGEKHRPROC eglCreateImageKHR;
|
|
|
|
PFNEGLDESTROYIMAGEKHRPROC eglDestroyImageKHR;
|
|
|
|
PFNEGLQUERYWAYLANDBUFFERWL eglQueryWaylandBufferWL;
|
|
|
|
PFNEGLQUERYDMABUFFORMATSEXTPROC eglQueryDmaBufFormatsEXT;
|
|
|
|
PFNEGLQUERYDMABUFMODIFIERSEXTPROC eglQueryDmaBufModifiersEXT;
|
|
|
|
PFNEGLDEBUGMESSAGECONTROLKHRPROC eglDebugMessageControlKHR;
|
2020-06-10 12:26:39 +00:00
|
|
|
PFNEGLQUERYDISPLAYATTRIBEXTPROC eglQueryDisplayAttribEXT;
|
|
|
|
PFNEGLQUERYDEVICESTRINGEXTPROC eglQueryDeviceStringEXT;
|
2019-11-10 13:31:33 +00:00
|
|
|
} procs;
|
|
|
|
|
2020-11-18 13:53:13 +00:00
|
|
|
struct wlr_drm_format_set dmabuf_texture_formats;
|
2020-11-18 13:16:22 +00:00
|
|
|
struct wlr_drm_format_set dmabuf_render_formats;
|
2017-05-03 05:04:41 +00:00
|
|
|
};
|
|
|
|
|
2020-05-19 09:54:59 +00:00
|
|
|
/**
|
2021-01-09 11:13:35 +00:00
|
|
|
* Make the EGL context current.
|
2020-05-19 09:54:59 +00:00
|
|
|
*
|
|
|
|
* Callers are expected to clear the current context when they are done by
|
|
|
|
* calling wlr_egl_unset_current.
|
|
|
|
*/
|
2021-01-09 11:13:35 +00:00
|
|
|
bool wlr_egl_make_current(struct wlr_egl *egl);
|
2018-01-20 23:06:35 +00:00
|
|
|
|
2020-05-19 09:54:59 +00:00
|
|
|
bool wlr_egl_unset_current(struct wlr_egl *egl);
|
|
|
|
|
2018-04-01 20:07:50 +00:00
|
|
|
bool wlr_egl_is_current(struct wlr_egl *egl);
|
|
|
|
|
2017-05-03 05:04:41 +00:00
|
|
|
#endif
|