aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/render/egl.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-06-05 09:59:26 +0100
committeremersion <contact@emersion.fr>2018-06-08 00:06:34 +0100
commitd425edc96c28a0b251bbe26200fa7dfbc40b241c (patch)
tree641a5932ee7e1c35d6cd93694b8b855c7420d6e3 /include/wlr/render/egl.h
parentcbfe0e834aa202a9c3cc713f958a043efcd15d6a (diff)
render/egl: consistent extension checking
Diffstat (limited to 'include/wlr/render/egl.h')
-rw-r--r--include/wlr/render/egl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h
index abf51997..26e367a1 100644
--- a/include/wlr/render/egl.h
+++ b/include/wlr/render/egl.h
@@ -16,12 +16,13 @@ struct wlr_egl {
const char *exts_str;
struct {
- bool buffer_age;
- bool swap_buffers_with_damage;
- bool dmabuf_import;
- bool dmabuf_import_modifiers;
bool bind_wayland_display;
+ bool buffer_age;
bool context_priority;
+ bool dmabuf_import_modifiers;
+ bool dmabuf_import;
+ bool image_base;
+ bool swap_buffers_with_damage;
} egl_exts;
struct wl_display *wl_display;