1
0
Fork 0

cogl/gles: Don't initialize glGetStringi

We never use it for ES, and for good reason: It only exists in ES 3.0
while our ES path only supports 2.0.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4019>
This commit is contained in:
Daniel van Vugt 2024-09-17 17:55:27 +08:00 committed by Marge Bot
parent 010d68ed5a
commit 338bd62708

View file

@ -695,9 +695,6 @@ _cogl_driver_update_features (CoglContext *context,
context->glGetString =
(void *) cogl_renderer_get_proc_address (context->display->renderer,
"glGetString");
context->glGetStringi =
(void *) cogl_renderer_get_proc_address (context->display->renderer,
"glGetStringi");
if (!check_gl_version (context, error))
return FALSE;