Makefile: define supported GPUs with cflag
authorApaczer <94932128+Apaczer@users.noreply.github.com>
Mon, 31 Mar 2025 15:26:30 +0000 (17:26 +0200)
committernotaz <notasas@gmail.com>
Tue, 1 Apr 2025 22:35:40 +0000 (01:35 +0300)
add HAVE_NEON_GPU to config.mak

Makefile
configure

index 0cf5d2c..b5584b3 100644 (file)
--- 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"
index 0de7175..c062a7e 100755 (executable)
--- 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