diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-06-09 10:19:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-09 10:19:40 -0700 |
commit | 9a1f0e2d5fe56870f3bd7d12113742766e89f4e6 (patch) | |
tree | 090ee2c01093858d485fdfcdeb8a60736894dec1 /include/wlr | |
parent | 9179b438a596943f78dd2f7c27086c3116b26b01 (diff) | |
parent | f1a62a3200ef78e2d70035862c9b5a86bae27e21 (diff) |
Merge pull request #1052 from VincentVanlaer/egl-damage-khr
Split eglSwapBuffersWithDamage feature detection
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render/egl.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h index 55086755..0f591d60 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 dmabuf_import_modifiers; - bool dmabuf_import; - bool image_base; - bool swap_buffers_with_damage; + bool bind_wayland_display_wl; + bool buffer_age_ext; + bool image_dmabuf_import_modifiers_ext; + bool image_dmabuf_import_ext; + bool image_base_khr; + bool swap_buffers_with_damage_ext; + bool swap_buffers_with_damage_khr; } exts; struct wl_display *wl_display; |