diff options
author | emersion <contact@emersion.fr> | 2018-06-08 21:06:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 21:06:01 +0100 |
commit | 8770449eb7c84fe2fb1d59c2a6d63e8053178b7b (patch) | |
tree | 08cbb0d601101b392fceef79defc434c7dca24e0 /include/wlr | |
parent | a072a8309e8b83da0b11c738938493efac9edb8b (diff) | |
parent | 457bfcab1978f6b2bff42982b8fcbf220246ee54 (diff) |
Merge pull request #1028 from emersion/egl-context-priority
Request a high priority EGL context
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render/egl.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h index 6d79cbd2..55086755 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 bind_wayland_display; bool buffer_age; - bool swap_buffers_with_damage; - bool dmabuf_import; bool dmabuf_import_modifiers; - bool bind_wayland_display; - } egl_exts; + bool dmabuf_import; + bool image_base; + bool swap_buffers_with_damage; + } exts; struct wl_display *wl_display; }; |