egl: Rename EGL simple config chooser

It just picked the first config, so name it accordingly.

https://gitlab.gnome.org/GNOME/mutter/issues/2
This commit is contained in:
Jonas Ådahl 2018-02-23 22:13:11 +08:00
parent 0bf0e5780c
commit b4d642be52
3 changed files with 17 additions and 17 deletions

View File

@ -266,7 +266,7 @@ meta_egl_get_proc_address (MetaEgl *egl,
}
gboolean
meta_egl_choose_config (MetaEgl *egl,
meta_egl_choose_first_config (MetaEgl *egl,
EGLDisplay display,
const EGLint *attrib_list,
EGLConfig *chosen_config,

View File

@ -56,7 +56,7 @@ gpointer meta_egl_get_proc_address (MetaEgl *egl,
const char *procname,
GError **error);
gboolean meta_egl_choose_config (MetaEgl *egl,
gboolean meta_egl_choose_first_config (MetaEgl *egl,
EGLDisplay display,
const EGLint *attrib_list,
EGLConfig *chosen_config,

View File

@ -980,7 +980,7 @@ create_dummy_pbuffer_surface (EGLDisplay egl_display,
EGL_NONE
};
if (!meta_egl_choose_config (egl, egl_display, pbuffer_config_attribs,
if (!meta_egl_choose_first_config (egl, egl_display, pbuffer_config_attribs,
&pbuffer_config, error))
return EGL_NO_SURFACE;
@ -2846,7 +2846,7 @@ create_secondary_egl_config (MetaEgl *egl,
EGL_NONE
};
return meta_egl_choose_config (egl,
return meta_egl_choose_first_config (egl,
egl_display,
attributes,
egl_config,