gallium/dri: fix redundant Meson condition
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Since 4b54277d2e, in this branch, with_gallium_va is always true. No
need to check it twice.

Fixes: 4b54277d2e ("Remove VDPAU")
Signed-off-by: Sam James <sam@gentoo.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33727>
This commit is contained in:
Sam James 2026-06-05 19:52:20 +01:00 committed by Marge Bot
parent 7aea3e14dc
commit 4a6f6dd266

View file

@ -15,9 +15,7 @@ gallium_dri_link_whole = []
if with_gallium_va
gallium_dri_link_with += [libgalliumvlwinsys]
if with_gallium_va
gallium_dri_link_whole += [libva_st]
endif
gallium_dri_link_whole += [libva_st]
endif
if host_machine.cpu_family() == 'x86' and not with_glx_read_only_text