From 18591509d6496312f50eaeed5c4a0ee1e93c0302 Mon Sep 17 00:00:00 2001 From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Mon, 31 Mar 2025 17:08:56 +0200 Subject: [PATCH] frontend/menu: display only plausible gpu plugins --- frontend/menu.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/menu.c b/frontend/menu.c index 501af7e0..7f8fdc33 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1528,9 +1528,18 @@ static const char h_plugin_gpu[] = #elif defined(BUILTIN_GPU_UNAI) "builtin_gpu is the Unai GPU, very fast\n" #endif +#if !defined(BUILTIN_GPU_NEON) && defined(GPU_NEON) + "gpu_neon is Exophase's NEON GPU, fast and accurate\n" +#endif +#ifndef BUILTIN_GPU_PEOPS "gpu_peops is Pete's soft GPU, slow but accurate\n" +#endif +#ifndef BUILTIN_GPU_UNAI "gpu_unai is the GPU renderer from PCSX4ALL\n" +#endif +#ifdef HAVE_GLES "gpu_gles Pete's hw GPU, uses 3D chip but is glitchy\n" +#endif "must save config and reload the game if changed"; static const char h_plugin_spu[] = "spunull effectively disables sound\n" "must save config and reload the game if changed"; -- 2.39.5