aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-07-11 19:55:32 +0200
committerSimon Zeni <simon@bl4ckb0ne.ca>2021-07-12 09:13:49 -0400
commit4c51a0f6eba0aee7b959a81b7034dbdf764e53ec (patch)
tree048298051bb68eed3d3c7144a2fe8eaa4ba65cd5 /include/wlr
parent4554f17377fa5dbd7615b9bc0a6a6c71ecb246c0 (diff)
render/egl: rename wlr_egl.exts to better match Khronos
Khronos refers to extensions with their namespace as a prefix in uppercase. Change our naming to align with Khronos conventions. This also makes grepping easier.
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/render/egl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h
index c92364f5..4a474062 100644
--- a/include/wlr/render/egl.h
+++ b/include/wlr/render/egl.h
@@ -37,12 +37,12 @@ struct wlr_egl {
struct {
// Display extensions
- bool image_base_khr;
- bool image_dmabuf_import_ext;
- bool image_dmabuf_import_modifiers_ext;
+ bool KHR_image_base;
+ bool EXT_image_dma_buf_import;
+ bool EXT_image_dma_buf_import_modifiers;
// Device extensions
- bool device_drm_ext;
+ bool EXT_device_drm;
} exts;
struct {