diff options
author | emersion <contact@emersion.fr> | 2018-06-17 14:49:18 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-06-17 14:49:18 +0100 |
commit | 57548b557ae9e4f2b03c2d78996706f0990ab9d6 (patch) | |
tree | 85d7ae8d5d3f302d16914690f8e30e40e8ba0969 /include/wlr/render/egl.h | |
parent | bd0c1b794992bf94560bd429f4057c9d09989f06 (diff) | |
parent | fb118ac9966bbb663ddb9964f54c879a0bb88fba (diff) |
Merge branch 'master' into screencontent
Diffstat (limited to 'include/wlr/render/egl.h')
-rw-r--r-- | include/wlr/render/egl.h | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h index 39b1d3d9..6b887f4f 100644 --- a/include/wlr/render/egl.h +++ b/include/wlr/render/egl.h @@ -16,13 +16,15 @@ struct wlr_egl { const char *exts_str; struct { - bool buffer_age; - bool swap_buffers_with_damage; - bool dmabuf_import; - bool dmabuf_import_modifiers; - bool dmabuf_export; - bool bind_wayland_display; - } egl_exts; + bool bind_wayland_display_wl; + bool buffer_age_ext; + bool image_base_khr; + bool image_dma_buf_export_mesa; + bool image_dmabuf_import_ext; + bool image_dmabuf_import_modifiers_ext; + bool swap_buffers_with_damage_ext; + bool swap_buffers_with_damage_khr; + } exts; struct wl_display *wl_display; }; @@ -69,13 +71,6 @@ EGLImageKHR wlr_egl_create_image_from_dmabuf(struct wlr_egl *egl, struct wlr_dmabuf_attributes *attributes); /** - * Try to import the given dmabuf. On success return true false otherwise. - * If this succeeds the dmabuf can be used for rendering on a texture - */ -bool wlr_egl_check_import_dmabuf(struct wlr_egl *egl, - struct wlr_dmabuf_attributes *attributes); - -/** * Get the available dmabuf formats */ int wlr_egl_get_dmabuf_formats(struct wlr_egl *egl, int **formats); |