aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-07-11 20:00:02 +0200
committerSimon Zeni <simon@bl4ckb0ne.ca>2021-07-12 09:13:49 -0400
commit9b70eab19494550c6765910affb5fc8c3f883662 (patch)
treee2edbfd3c34b0701353919bf9430ea83c8f510f1 /include
parent4c51a0f6eba0aee7b959a81b7034dbdf764e53ec (diff)
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.
Diffstat (limited to 'include')
-rw-r--r--include/render/gles2.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/render/gles2.h b/include/render/gles2.h
index 3e278e32..013270e4 100644
--- a/include/render/gles2.h
+++ b/include/render/gles2.h
@@ -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 {