From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Sun, 30 Mar 2025 19:18:12 +0000 (+0200) Subject: frontend: rm BUILTIN_GPU_NEON ifdefs for shared build to work X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94272c2de7b913bad73fcf11186c015bd92cc867;p=pcsx_rearmed.git frontend: rm BUILTIN_GPU_NEON ifdefs for shared build to work --- diff --git a/frontend/menu.c b/frontend/menu.c index 49c5c77f..4b5201b2 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1411,8 +1411,6 @@ static int menu_loop_gfx_options(int id, int keys) // ------------ bios/plugins ------------ -#ifdef BUILTIN_GPU_NEON - static const char h_gpu_neon[] = "Configure built-in NEON GPU plugin"; static const char h_gpu_neon_enhanced[] = @@ -1440,8 +1438,6 @@ static int menu_loop_plugin_gpu_neon(int id, int keys) return 0; } -#endif - static menu_entry e_menu_plugin_gpu_unai[] = { mee_onoff ("Old renderer", 0, pl_rearmed_cbs.gpu_unai.old_renderer, 1), @@ -2077,9 +2073,7 @@ static const char credits_text[] = "(C) 2005-2009 PCSX-df Team\n" "(C) 2009-2011 PCSX-Reloaded Team\n\n" "ARM recompiler (C) 2009-2011 Ari64\n" -#ifdef BUILTIN_GPU_NEON "ARM NEON GPU (c) 2011-2012 Exophase\n" -#endif "PEOpS GPU and SPU by Pete Bernert\n" " and the P.E.Op.S. team\n" "PCSX4ALL plugin by PCSX4ALL team\n" diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index 6369f96a..e2268c76 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -519,7 +519,6 @@ static int dispmode_default(void) return 1; } -#ifdef BUILTIN_GPU_NEON static int dispmode_doubleres(void) { if (!(pl_rearmed_cbs.gpu_caps & GPU_CAP_SUPPORTS_2X) @@ -531,7 +530,6 @@ static int dispmode_doubleres(void) snprintf(hud_msg, sizeof(hud_msg), "double resolution"); return 1; } -#endif #ifdef HAVE_NEON32 static int dispmode_scale2x(void) @@ -559,9 +557,7 @@ static int dispmode_eagle2x(void) static int (*dispmode_switchers[])(void) = { dispmode_default, -#ifdef BUILTIN_GPU_NEON dispmode_doubleres, -#endif #ifdef HAVE_NEON32 dispmode_scale2x, dispmode_eagle2x,