From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Mon, 31 Mar 2025 15:26:30 +0000 (+0200) Subject: Makefile: define supported GPUs with cflag X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5368e5b9d1a999720109715763e440a847dbce79;p=pcsx_rearmed.git Makefile: define supported GPUs with cflag add HAVE_NEON_GPU to config.mak --- diff --git a/Makefile b/Makefile index 0cf5d2c6..b5584b3e 100644 --- a/Makefile +++ b/Makefile @@ -249,6 +249,14 @@ ifneq ($(findstring libretro,$(SOUND_DRIVERS)),) plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO endif +# supported gpu list in menu +ifeq "$(HAVE_NEON_GPU)" "1" +frontend/menu.o: CFLAGS += -DGPU_NEON +endif +ifeq "$(HAVE_GLES)" "1" +frontend/menu.o: CFLAGS += -DHAVE_GLES +endif + # builtin gpu OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o plugins/gpulib/prim.o ifeq "$(BUILTIN_GPU)" "neon" diff --git a/configure b/configure index 0de71759..c062a7ef 100755 --- a/configure +++ b/configure @@ -637,6 +637,9 @@ echo "PLATFORM = $platform" >> $config_mak echo "BUILTIN_GPU = $builtin_gpu" >> $config_mak echo "SOUND_DRIVERS = $sound_drivers" >> $config_mak echo "PLUGINS = $plugins" >> $config_mak +if [ "$have_neon_gpu" = "yes" ]; then + echo "HAVE_NEON_GPU = 1" >> $config_mak +fi if [ "$have_arm_neon" = "yes" ]; then echo "HAVE_NEON = 1" >> $config_mak fi