aboutsummaryrefslogtreecommitdiff
path: root/cmake/scripts/linux
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2017-04-13 15:05:44 -0700
committerLukas Rusak <lorusak@gmail.com>2017-07-05 16:12:29 -0700
commitc4362e14b4cbc61488bdd6caac16e963ee2c6477 (patch)
tree8243997b56f93f8fa36bfb1c2877d159fbe18437 /cmake/scripts/linux
parente8f2a94447a646e45cea081ac738e75912e5340c (diff)
ArchSetup.cmake: disable VAAPI with GBM
Diffstat (limited to 'cmake/scripts/linux')
-rw-r--r--cmake/scripts/linux/ArchSetup.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/scripts/linux/ArchSetup.cmake b/cmake/scripts/linux/ArchSetup.cmake
index c31becdd91..8a5bbaab16 100644
--- a/cmake/scripts/linux/ArchSetup.cmake
+++ b/cmake/scripts/linux/ArchSetup.cmake
@@ -44,3 +44,8 @@ endif()
if(ENABLE_MIR)
set(ENABLE_VDPAU OFF CACHE BOOL "Disabling VDPAU since no Mir support" FORCE)
endif()
+
+if(ENABLE_GBM)
+ set(ENABLE_VDPAU OFF CACHE BOOL "Disabling VDPAU" FORCE)
+ set(ENABLE_VAAPI OFF CACHE BOOL "Disabling VAAPI" FORCE)
+endif()