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.
This commit is contained in:
Simon Ser 2021-07-11 19:55:32 +02:00 committed by Simon Zeni
parent 4554f17377
commit 4c51a0f6eb
3 changed files with 17 additions and 17 deletions

View file

@ -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 {