1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-24 09:40:07 +00:00

Merge pull request from orbea/rgui

qb: Improve menu check without opengl, opengles or vulkan.
This commit is contained in:
Twinaphex 2019-01-07 10:02:30 +01:00 committed by GitHub
commit c44235611d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -578,18 +578,20 @@ if [ "$HAVE_MENU" != 'no' ]; then
if [ "$OS" = 'Win32' ]; then
HAVE_SHADERPIPELINE=no
HAVE_VULKAN=no
die : 'Notice: Hardware rendering context not available.'
elif [ "$HAVE_CACA" = 'yes' ] || [ "$HAVE_SIXEL" = 'yes' ]; then
die : 'Notice: Hardware rendering context not available.'
else
if [ "$HAVE_CACA" != 'yes' ] && [ "$HAVE_SIXEL" != 'yes' ] &&
[ "$HAVE_SDL" != 'yes' ] && [ "$HAVE_SDL2" != 'yes' ]; then
HAVE_MENU=no
HAVE_RGUI=no
fi
HAVE_MATERIALUI=no
HAVE_OZONE=no
HAVE_XMB=no
HAVE_NUKLEAR=no
HAVE_STRIPES=no
HAVE_ZARCH=no
die : 'Notice: Hardware rendering context not available, menu drivers will also be disabled.'
fi
die : 'Notice: Hardware rendering context not available.'
fi
fi