Skip to content

Commit

Permalink
ppsspp: disabling EGL for arm and aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorigao committed Jun 28, 2021
1 parent 7ffa0f4 commit f5523fd
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions package/batocera/emulators/ppsspp/ppsspp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -70,29 +70,22 @@ ifeq ($(BR2_aarch64),y)
PPSSPP_CONF_OPTS += \
-DARM64=ON \
-DUSING_GLES2=ON \
-DUSING_EGL=ON
-DUSING_EGL=OFF
endif

# odroid / rpi / rockpro64
ifeq ($(BR2_arm),y)
PPSSPP_CONF_OPTS += \
-DARMV7=ON \
-DARM=ON \
-DUSING_GLES2=ON
-DUSING_GLES2=ON \
-DUSING_EGL=OFF
endif

# rockchip
ifeq ($(BR2_PACKAGE_BATOCERA_TARGET_ROCKCHIP_ANY),y)
ifeq ($(BR2_arm),y)
PPSSPP_CONF_OPTS += -DUSING_EGL=OFF
endif

# In order to support the custom resolution patch, permissive compile is needed
PPSSPP_TARGET_CFLAGS += -fpermissive
else
ifeq ($(BR2_arm),y)
PPSSPP_CONF_OPTS += -DUSING_EGL=ON
endif
endif

ifeq ($(BR2_PACKAGE_HAS_LIBMALI),y)
Expand Down

0 comments on commit f5523fd

Please sign in to comment.