mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
egl: only check dri3 on X11
When mesa is built without support for X11 Zink will always refuse to
start unless `LIBGL_KOPPER_DRI2` is set.
Only perform this check on X11 where it is relevant.
Fixes: cedb534a17 ("egl/glx: don't load non-sw zink without dri3 support")
Reviewed-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26929>
This commit is contained in:
parent
71e486d1cf
commit
0fd066a1d7
1 changed files with 2 additions and 0 deletions
|
|
@ -1072,6 +1072,8 @@ dri2_setup_extensions(_EGLDisplay *disp)
|
|||
dri2_dpy->dri3_major_version != -1 &&
|
||||
!dri2_dpy->multibuffers_available &&
|
||||
#endif
|
||||
(disp->Platform == EGL_PLATFORM_X11_KHR ||
|
||||
disp->Platform == EGL_PLATFORM_XCB_EXT) &&
|
||||
!debug_get_bool_option("LIBGL_KOPPER_DRI2", false))
|
||||
return EGL_FALSE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue