From 820e7cf013971f8d776d6114522b6133bbaa2de7 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Sun, 7 Jan 2024 12:32:39 -0500 Subject: [PATCH] PPSSPP: also use GLES on bionic --- apps/PPSSPP (PSP emulator)/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/PPSSPP (PSP emulator)/install b/apps/PPSSPP (PSP emulator)/install index 3da52fe621c..07cd1e77524 100755 --- a/apps/PPSSPP (PSP emulator)/install +++ b/apps/PPSSPP (PSP emulator)/install @@ -17,8 +17,8 @@ cd build || error "Could not move to build folder" # vulkan does not currently work properly (or at all) in SDL or QT backends on Linux https://github.com/hrydgard/ppsspp/pull/13054 https://github.com/hrydgard/ppsspp/issues/11628 # changing to vulkan in the UI does nothing and OpenGL continues to be used # enabling it causes no compilation issues and it can not be fully disabled (always shows in the UI) so keep it enabled -# use GLES on ARM32 due to QT5 being built with GLES and not GL on ARM32 -if [ $arch == 32 ];then +# use GLES on ARM32 (and Ubuntu Bionic) due to QT5 being built with GLES and not GL on ARM32 (and Ubuntu Bionic) +if [ $arch == 32 ] || [ "$__os_codename" == bionic ];then cmake .. -DUSING_QT_UI=ON -DUSE_SYSTEM_FFMPEG=OFF -DUSING_GLES2=ON -DUSING_EGL=ON || error "cmake failed to configure the build" elif [ $arch == 64 ];then cmake .. -DUSING_QT_UI=ON -DUSE_SYSTEM_FFMPEG=OFF || error "cmake failed to configure the build"