From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Fri, 28 Mar 2025 21:12:38 +0000 (+0100) Subject: frontend/menu: show relevant built-in GPU X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2ba1d45037f1aa839f70a8f2ee419c2eaf685bc;p=pcsx_rearmed.git frontend/menu: show relevant built-in GPU --- diff --git a/Makefile b/Makefile index 4ec5baa7..0cf5d2c6 100644 --- a/Makefile +++ b/Makefile @@ -270,6 +270,7 @@ CFLAGS += -DGPU_PEOPS # note: code is not safe for strict-aliasing? (Castlevania problems) plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c +frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_PEOPS OBJS += plugins/dfxvideo/gpulib_if.o ifeq "$(THREAD_RENDERING)" "1" CFLAGS += -DTHREAD_RENDERING @@ -295,6 +296,7 @@ CFLAGS += -DGPU_UNAI_NO_OLD endif plugins/gpu_unai/gpulib_if.o: plugins/gpu_unai/*.h plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -DUSE_GPULIB=1 +frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_UNAI ifneq ($(DEBUG), 1) plugins/gpu_unai/gpulib_if.o \ plugins/gpu_unai/old/if.o: CFLAGS += -O3 diff --git a/frontend/menu.c b/frontend/menu.c index bf85eeb6..2c8d658d 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1556,8 +1556,12 @@ static const char h_bios[] = "HLE is simulated BIOS. BIOS selection is sav "savestates and can't be changed there. Must save\n" "config and reload the game for change to take effect"; static const char h_plugin_gpu[] = -#ifdef BUILTIN_GPU_NEON +#if defined(BUILTIN_GPU_NEON) "builtin_gpu is the NEON GPU, very fast and accurate\n" +#elif defined(BUILTIN_GPU_PEOPS) + "builtin_gpu is the P.E.Op.S GPU, slow but accurate\n" +#elif defined(BUILTIN_GPU_UNAI) + "builtin_gpu is the Unai GPU, very fast\n" #endif "gpu_peops is Pete's soft GPU, slow but accurate\n" "gpu_unai is the GPU renderer from PCSX4ALL\n" @@ -1576,8 +1580,12 @@ static menu_entry e_menu_plugin_options[] = mee_enum ("GPU Dithering", 0, pl_rearmed_cbs.dithering, men_gpu_dithering), mee_enum_h ("GPU plugin", 0, gpu_plugsel, gpu_plugins, h_plugin_gpu), mee_enum_h ("SPU plugin", 0, spu_plugsel, spu_plugins, h_plugin_spu), -#ifdef BUILTIN_GPU_NEON +#if defined(BUILTIN_GPU_NEON) mee_handler_h ("Configure built-in GPU plugin", menu_loop_plugin_gpu_neon, h_gpu_neon), +#elif defined(BUILTIN_GPU_PEOPS) + mee_handler_h ("Configure built-in GPU plugin", menu_loop_plugin_gpu_peops, h_gpu_peops), +#elif defined(BUILTIN_GPU_UNAI) + mee_handler_h ("Configure built-in GPU plugin", menu_loop_plugin_gpu_unai, h_gpu_unai), #endif mee_handler_h ("Configure gpu_peops plugin", menu_loop_plugin_gpu_peops, h_gpu_peops), mee_handler_h ("Configure gpu_unai GPU plugin", menu_loop_plugin_gpu_unai, h_gpu_unai),