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
|
|
|
|
2018-11-09 20:31:11 +01:00
|
|
|
#include <wlr/config.h>
|
|
|
|
|
2018-12-22 16:51:29 +01:00
|
|
|
#if !WLR_HAS_X11_BACKEND && !WLR_HAS_XWAYLAND && !defined MESA_EGL_NO_X11_HEADERS
|
2018-11-09 20:31:11 +01:00
|
|
|
#define MESA_EGL_NO_X11_HEADERS
|
|
|
|
#endif
|
|
|
|
|
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>
|
2017-12-08 00:59:37 +01:00
|
|
|
#include <wayland-server.h>
|
2018-05-29 23:38:00 +02:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2017-05-03 07:04:41 +02:00
|
|
|
|
|
|
|
struct wlr_egl {
|
2018-10-28 09:49:30 +01:00
|
|
|
EGLenum platform;
|
2017-05-03 07:04:41 +02:00
|
|
|
EGLDisplay display;
|
|
|
|
EGLConfig config;
|
|
|
|
EGLContext context;
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-27 23:02:48 +02:00
|
|
|
const char *exts_str;
|
2018-01-21 00:06:35 +01:00
|
|
|
|
|
|
|
struct {
|
2018-06-09 18:56:04 +02:00
|
|
|
bool bind_wayland_display_wl;
|
|
|
|
bool buffer_age_ext;
|
|
|
|
bool image_base_khr;
|
2018-06-17 15:49:18 +02:00
|
|
|
bool image_dma_buf_export_mesa;
|
|
|
|
bool image_dmabuf_import_ext;
|
|
|
|
bool image_dmabuf_import_modifiers_ext;
|
2018-06-09 18:56:04 +02:00
|
|
|
bool swap_buffers_with_damage_ext;
|
2018-06-09 11:35:07 +02:00
|
|
|
bool swap_buffers_with_damage_khr;
|
2018-06-08 01:17:45 +02:00
|
|
|
} exts;
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
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
|
|
|
/**
|
2018-04-01 05:20:00 +02:00
|
|
|
* Initializes an EGL context for the given platform and remote display.
|
2017-08-09 21:25:34 +02:00
|
|
|
* Will attempt to load all possibly required api functions.
|
|
|
|
*/
|
2017-12-17 23:51:04 +01:00
|
|
|
bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *remote_display,
|
|
|
|
EGLint *config_attribs, EGLint visual_id);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
2018-04-01 05:20:00 +02:00
|
|
|
* Frees all related EGL resources, makes the context not-current and
|
2017-08-09 21:25:34 +02:00
|
|
|
* unbinds a bound wayland display.
|
|
|
|
*/
|
2017-12-08 00:59:37 +01:00
|
|
|
void wlr_egl_finish(struct wlr_egl *egl);
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
/**
|
2018-04-01 05:20:00 +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.
|
2017-08-09 21:25:34 +02:00
|
|
|
*/
|
|
|
|
bool wlr_egl_bind_display(struct wlr_egl *egl, struct wl_display *local_display);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2018-02-23 18:45:16 +01:00
|
|
|
/**
|
2018-04-01 05:20:00 +02:00
|
|
|
* Creates an EGL image from the given wl_drm buffer resource.
|
|
|
|
*/
|
|
|
|
EGLImageKHR wlr_egl_create_image_from_wl_drm(struct wlr_egl *egl,
|
|
|
|
struct wl_resource *data, EGLint *fmt, int *width, int *height,
|
|
|
|
bool *inverted_y);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an EGL image from the given dmabuf attributes. Check usability
|
2018-02-23 18:45:16 +01:00
|
|
|
* of the dmabuf with wlr_egl_check_import_dmabuf once first.
|
|
|
|
*/
|
|
|
|
EGLImageKHR wlr_egl_create_image_from_dmabuf(struct wlr_egl *egl,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attributes);
|
2018-02-23 18:45:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the available dmabuf formats
|
|
|
|
*/
|
|
|
|
int wlr_egl_get_dmabuf_formats(struct wlr_egl *egl, int **formats);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the available dmabuf modifiers for a given format
|
|
|
|
*/
|
|
|
|
int wlr_egl_get_dmabuf_modifiers(struct wlr_egl *egl, int format,
|
2018-04-08 17:00:56 +02:00
|
|
|
uint64_t **modifiers);
|
2018-02-23 18:45:16 +01:00
|
|
|
|
2018-05-23 01:03:26 +02:00
|
|
|
bool wlr_egl_export_image_to_dmabuf(struct wlr_egl *egl, EGLImageKHR image,
|
|
|
|
int32_t width, int32_t height, uint32_t flags,
|
2018-05-31 13:33:27 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2018-05-23 01:03:26 +02:00
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
/**
|
2018-04-01 05:20:00 +02:00
|
|
|
* Destroys an EGL image created with the given wlr_egl.
|
2017-08-09 21:25:34 +02:00
|
|
|
*/
|
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
|
|
|
|
2018-01-21 00:06:35 +01:00
|
|
|
bool wlr_egl_make_current(struct wlr_egl *egl, EGLSurface surface,
|
|
|
|
int *buffer_age);
|
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
bool wlr_egl_is_current(struct wlr_egl *egl);
|
|
|
|
|
2018-02-09 22:54:14 +01:00
|
|
|
bool wlr_egl_swap_buffers(struct wlr_egl *egl, EGLSurface surface,
|
|
|
|
pixman_region32_t *damage);
|
|
|
|
|
2018-04-25 01:42:19 +02:00
|
|
|
bool wlr_egl_destroy_surface(struct wlr_egl *egl, EGLSurface surface);
|
2018-04-25 00:44:43 +02:00
|
|
|
|
2017-05-03 07:04:41 +02:00
|
|
|
#endif
|