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 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
|
|
|
|
2022-03-31 11:29:24 +02:00
|
|
|
struct wlr_egl;
|
2017-05-03 07:04:41 +02:00
|
|
|
|
2022-05-25 17:48:00 +02:00
|
|
|
/**
|
|
|
|
* Create a struct wlr_egl with an existing EGL display and context.
|
|
|
|
*
|
|
|
|
* This is typically used by compositors which want to customize EGL
|
|
|
|
* initialization.
|
|
|
|
*/
|
2021-11-27 20:01:48 +01:00
|
|
|
struct wlr_egl *wlr_egl_create_with_context(EGLDisplay display,
|
|
|
|
EGLContext context);
|
|
|
|
|
2022-05-25 17:42:24 +02:00
|
|
|
/**
|
|
|
|
* Get the EGL display used by the struct wlr_egl.
|
|
|
|
*
|
|
|
|
* This is typically used by compositors which need to perform custom OpenGL
|
|
|
|
* operations.
|
|
|
|
*/
|
|
|
|
EGLDisplay wlr_egl_get_display(struct wlr_egl *egl);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the EGL context used by the struct wlr_egl.
|
|
|
|
*
|
|
|
|
* This is typically used by compositors which need to perform custom OpenGL
|
|
|
|
* operations.
|
|
|
|
*/
|
|
|
|
EGLContext wlr_egl_get_context(struct wlr_egl *egl);
|
|
|
|
|
2017-05-03 07:04:41 +02:00
|
|
|
#endif
|