xwayland: Avoid using epoxy_has_egl()
There's no real point - if we don't have EGL then the extension check is also going to fail - and the entrypoint is new in 1.5.0, which we don't need to require yet. Signed-off-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Mario Kleiner <mario.kleiner.de@gmail.com>
This commit is contained in:
parent
d6f2272f44
commit
975d3a5096
|
@ -55,8 +55,7 @@ xwl_glamor_egl_make_current(struct xwl_screen *xwl_screen)
|
||||||
Bool
|
Bool
|
||||||
xwl_glamor_egl_supports_device_probing(void)
|
xwl_glamor_egl_supports_device_probing(void)
|
||||||
{
|
{
|
||||||
return epoxy_has_egl() &&
|
return epoxy_has_egl_extension(NULL, "EGL_EXT_device_base");
|
||||||
epoxy_has_egl_extension(NULL, "EGL_EXT_device_base");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void **
|
void **
|
||||||
|
|
Loading…
Reference in New Issue