From 69ce5bdd652167c3a454b9421e2f5013657a875c Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Fri, 13 Jan 2017 14:07:00 -0500 Subject: [PATCH] GDI: allow menu drivers to be built without acceleration --- qb/config.libs.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 06298da402..937649064c 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -451,13 +451,17 @@ if [ "$HAVE_MATERIALUI" != 'no' ] || [ "$HAVE_XMB" != 'no' ] || [ "$HAVE_ZARCH" if [ "$HAVE_RGUI" = 'no' ]; then HAVE_MATERIALUI=no HAVE_XMB=no - HAVE_ZARCH=no + HAVE_ZARCH=no echo "Notice: RGUI not available, MaterialUI, XMB and ZARCH will also be disabled." elif [ "$HAVE_OPENGL" = 'no' ] && [ "$HAVE_OPENGLES" = 'no' ] && [ "$HAVE_VULKAN" = 'no' ]; then - HAVE_MATERIALUI=no - HAVE_XMB=no + if [ "$OS" = 'Win32' ]; then + echo "Notice: Hardware rendering context not available, the GDI video driver must be used." + else + HAVE_MATERIALUI=no + HAVE_XMB=no HAVE_ZARCH=no - echo "Notice: Hardware rendering context not available, XMB, MaterialUI and ZARCH will also be disabled." + echo "Notice: Hardware rendering context not available, XMB, MaterialUI and ZARCH will also be disabled." + fi fi fi