From 314e413ab0c6273b765268f6493e4dfc48f51f9d Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Fri, 19 May 2017 08:26:53 -0700 Subject: [PATCH] config/graphic: allow using vc4 driver --- config/graphic | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/graphic b/config/graphic index 285b13b221..ac7caf9b15 100644 --- a/config/graphic +++ b/config/graphic @@ -81,5 +81,11 @@ get_graphicdrivers() { GALLIUM_DRIVERS="$GALLIUM_DRIVERS,virgl" fi + if [ "$drv" = "vc4" ]; then + GALLIUM_DRIVERS="$GALLIUM_DRIVERS,vc4" + VAAPI_SUPPORT="no" + VDPAU_SUPPORT="no" + fi + done }