mesa@22: gallium-xlib -> xlib (#30465)

This commit is contained in:
eugeneswalker 2022-05-03 20:53:09 -07:00 committed by GitHub
parent a6589daa87
commit f8653dfb9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,10 @@ def meson_args(self):
if '+egl' in spec: if '+egl' in spec:
args.append('-Dglx=dri') args.append('-Dglx=dri')
else: else:
args.append('-Dglx=gallium-xlib') if spec.satisfies('@22:'):
args.append('-Dglx=xlib')
else:
args.append('-Dglx=gallium-xlib')
args_platforms.append('x11') args_platforms.append('x11')
else: else:
args.append('-Dglx=disabled') args.append('-Dglx=disabled')