2017-08-11 04:15:37 +02:00
|
|
|
#ifndef WLR_EGL_H
|
|
|
|
#define WLR_EGL_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>
|
2017-05-03 07:04:41 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct wlr_egl {
|
|
|
|
EGLDisplay display;
|
|
|
|
EGLConfig config;
|
|
|
|
EGLContext context;
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
PFNEGLGETPLATFORMDISPLAYEXTPROC get_platform_display;
|
|
|
|
PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC create_platform_window_surface;
|
|
|
|
|
|
|
|
PFNEGLCREATEIMAGEKHRPROC eglCreateImageKHR;
|
|
|
|
PFNEGLDESTROYIMAGEKHRPROC eglDestroyImageKHR;
|
|
|
|
PFNEGLQUERYWAYLANDBUFFERWL eglQueryWaylandBufferWL;
|
|
|
|
PFNEGLBINDWAYLANDDISPLAYWL eglBindWaylandDisplayWL;
|
|
|
|
PFNEGLUNBINDWAYLANDDISPLAYWL eglUnbindWaylandDisplayWL;
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
const char *egl_exts;
|
|
|
|
const char *gl_exts;
|
|
|
|
|
|
|
|
struct wl_display *wl_display;
|
2017-05-03 07:04:41 +02:00
|
|
|
};
|
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
// TODO: Allocate and return a wlr_egl
|
2017-08-09 21:25:34 +02:00
|
|
|
/**
|
|
|
|
* Initializes an egl context for the given platform and remote display.
|
|
|
|
* Will attempt to load all possibly required api functions.
|
|
|
|
*/
|
2017-05-03 07:04:41 +02:00
|
|
|
bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *display);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees all related egl resources, makes the context not-current and
|
|
|
|
* unbinds a bound wayland display.
|
|
|
|
*/
|
2017-05-03 07:04:41 +02:00
|
|
|
void wlr_egl_free(struct wlr_egl *egl);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Binds the given display to the egl instance.
|
|
|
|
* This will allow clients to create egl surfaces from wayland ones and render to it.
|
|
|
|
*/
|
|
|
|
bool wlr_egl_bind_display(struct wlr_egl *egl, struct wl_display *local_display);
|
|
|
|
|
|
|
|
/**
|
2017-08-11 04:15:37 +02:00
|
|
|
* Refer to the eglQueryWaylandBufferWL extension function.
|
2017-08-09 21:25:34 +02:00
|
|
|
*/
|
2017-08-11 04:15:37 +02:00
|
|
|
bool wlr_egl_query_buffer(struct wlr_egl *egl, struct wl_resource *buf,
|
2017-08-09 21:25:34 +02:00
|
|
|
EGLint attrib, EGLint *value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a surface for the given native window
|
|
|
|
* The window must match the remote display the wlr_egl was created with.
|
|
|
|
*/
|
2017-05-03 07:04:41 +02:00
|
|
|
EGLSurface wlr_egl_create_surface(struct wlr_egl *egl, void *window);
|
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
/**
|
|
|
|
* Creates an egl image from the given client buffer and attributes.
|
|
|
|
*/
|
2017-08-11 04:15:37 +02:00
|
|
|
EGLImageKHR wlr_egl_create_image(struct wlr_egl *egl,
|
|
|
|
EGLenum target, EGLClientBuffer buffer, const EGLint *attribs);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys an egl image created with the given wlr_egl.
|
|
|
|
*/
|
2017-08-11 04:15:37 +02:00
|
|
|
bool wlr_egl_destroy_image(struct wlr_egl *egl, EGLImageKHR image);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string for the last error ocurred with egl.
|
|
|
|
*/
|
|
|
|
const char *egl_error(void);
|
|
|
|
|
2017-05-03 07:04:41 +02:00
|
|
|
#endif
|