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:
parent
0bf0e5780c
commit
b4d642be52
@ -266,11 +266,11 @@ meta_egl_get_proc_address (MetaEgl *egl,
|
||||
}
|
||||
|
||||
gboolean
|
||||
meta_egl_choose_config (MetaEgl *egl,
|
||||
EGLDisplay display,
|
||||
const EGLint *attrib_list,
|
||||
EGLConfig *chosen_config,
|
||||
GError **error)
|
||||
meta_egl_choose_first_config (MetaEgl *egl,
|
||||
EGLDisplay display,
|
||||
const EGLint *attrib_list,
|
||||
EGLConfig *chosen_config,
|
||||
GError **error)
|
||||
{
|
||||
EGLint num_configs;
|
||||
EGLConfig *configs;
|
||||
|
@ -56,11 +56,11 @@ gpointer meta_egl_get_proc_address (MetaEgl *egl,
|
||||
const char *procname,
|
||||
GError **error);
|
||||
|
||||
gboolean meta_egl_choose_config (MetaEgl *egl,
|
||||
EGLDisplay display,
|
||||
const EGLint *attrib_list,
|
||||
EGLConfig *chosen_config,
|
||||
GError **error);
|
||||
gboolean meta_egl_choose_first_config (MetaEgl *egl,
|
||||
EGLDisplay display,
|
||||
const EGLint *attrib_list,
|
||||
EGLConfig *chosen_config,
|
||||
GError **error);
|
||||
|
||||
EGLContext meta_egl_create_context (MetaEgl *egl,
|
||||
EGLDisplay display,
|
||||
|
@ -980,8 +980,8 @@ create_dummy_pbuffer_surface (EGLDisplay egl_display,
|
||||
EGL_NONE
|
||||
};
|
||||
|
||||
if (!meta_egl_choose_config (egl, egl_display, pbuffer_config_attribs,
|
||||
&pbuffer_config, error))
|
||||
if (!meta_egl_choose_first_config (egl, egl_display, pbuffer_config_attribs,
|
||||
&pbuffer_config, error))
|
||||
return EGL_NO_SURFACE;
|
||||
|
||||
return meta_egl_create_pbuffer_surface (egl, egl_display,
|
||||
@ -2846,11 +2846,11 @@ create_secondary_egl_config (MetaEgl *egl,
|
||||
EGL_NONE
|
||||
};
|
||||
|
||||
return meta_egl_choose_config (egl,
|
||||
egl_display,
|
||||
attributes,
|
||||
egl_config,
|
||||
error);
|
||||
return meta_egl_choose_first_config (egl,
|
||||
egl_display,
|
||||
attributes,
|
||||
egl_config,
|
||||
error);
|
||||
}
|
||||
|
||||
static EGLContext
|
||||
|
Loading…
x
Reference in New Issue
Block a user