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