render/gles2: 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 20:00:02 +02:00 committed by Simon Zeni
parent 4c51a0f6eb
commit 9b70eab194
2 changed files with 15 additions and 15 deletions

View file

@ -39,10 +39,10 @@ struct wlr_gles2_renderer {
const char *exts_str;
struct {
bool read_format_bgra_ext;
bool debug_khr;
bool egl_image_external_oes;
bool egl_image_oes;
bool EXT_read_format_bgra;
bool KHR_debug;
bool OES_egl_image_external;
bool OES_egl_image;
} exts;
struct {