From 6fc783271d961c5ec9feb1a8551fb0a2b4652a23 Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 30 Mar 2025 16:57:45 +0300 Subject: [PATCH] clean up old gpu psemu funcs --- frontend/plugin.c | 12 ------------ libpcsxcore/plugins.c | 25 ++----------------------- libpcsxcore/plugins.h | 12 ------------ 3 files changed, 2 insertions(+), 47 deletions(-) diff --git a/frontend/plugin.c b/frontend/plugin.c index 19143251..8db390a7 100644 --- a/frontend/plugin.c +++ b/frontend/plugin.c @@ -20,9 +20,6 @@ #undef CALLBACK #define CALLBACK -/* GPU */ -static void CALLBACK GPUdisplayText(char *_) { return; } - /* SPU */ #include "../plugins/dfsound/spu.h" @@ -170,15 +167,6 @@ static const struct { DIRECT_GPU(GPUvBlank), DIRECT_GPU(GPUgetScreenInfo), DIRECT_GPU(GPUrearmedCallbacks), - - DIRECT_GPU(GPUdisplayText), -/* - DIRECT_GPU(GPUkeypressed), - DIRECT_GPU(GPUmakeSnapshot), - DIRECT_GPU(GPUconfigure), - DIRECT_GPU(GPUgetScreenPic), - DIRECT_GPU(GPUshowScreenPic), -*/ }; void *plugin_link(enum builtint_plugins_e id, const char *sym) diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index e59e8c60..d29ee1d4 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -41,12 +41,7 @@ GPUwriteStatus GPU_writeStatus; GPUwriteData GPU_writeData; GPUwriteDataMem GPU_writeDataMem; GPUdmaChain GPU_dmaChain; -GPUkeypressed GPU_keypressed; -GPUdisplayText GPU_displayText; -GPUmakeSnapshot GPU_makeSnapshot; GPUfreeze GPU_freeze; -GPUgetScreenPic GPU_getScreenPic; -GPUshowScreenPic GPU_showScreenPic; GPUvBlank GPU_vBlank; GPUgetScreenInfo GPU_getScreenInfo; @@ -163,19 +158,8 @@ static const char *err; void *hGPUDriver = NULL; -void CALLBACK GPU__displayText(char *pText) { - SysPrintf("%s\n", pText); -} - -long CALLBACK GPU__configure(void) { return 0; } -long CALLBACK GPU__test(void) { return 0; } -void CALLBACK GPU__about(void) {} -void CALLBACK GPU__makeSnapshot(void) {} -void CALLBACK GPU__keypressed(int key) {} -long CALLBACK GPU__getScreenPic(unsigned char *pMem) { return -1; } -long CALLBACK GPU__showScreenPic(unsigned char *pMem) { return -1; } -void CALLBACK GPU__vBlank(int val) {} -void CALLBACK GPU__getScreenInfo(int *y, int *base_hres) {} +static void CALLBACK GPU__vBlank(int val) {} +static void CALLBACK GPU__getScreenInfo(int *y, int *base_hres) {} #define LoadGpuSym1(dest, name) \ LoadSym(GPU_##dest, GPU##dest, name, TRUE); @@ -207,12 +191,7 @@ static int LoadGPUplugin(const char *GPUdll) { LoadGpuSym1(writeStatus, "GPUwriteStatus"); LoadGpuSym1(dmaChain, "GPUdmaChain"); LoadGpuSym1(updateLace, "GPUupdateLace"); - LoadGpuSym0(keypressed, "GPUkeypressed"); - LoadGpuSym0(displayText, "GPUdisplayText"); - LoadGpuSym0(makeSnapshot, "GPUmakeSnapshot"); LoadGpuSym1(freeze, "GPUfreeze"); - LoadGpuSym0(getScreenPic, "GPUgetScreenPic"); - LoadGpuSym0(showScreenPic, "GPUshowScreenPic"); LoadGpuSym0(vBlank, "GPUvBlank"); LoadGpuSym0(getScreenInfo, "GPUgetScreenInfo"); diff --git a/libpcsxcore/plugins.h b/libpcsxcore/plugins.h index 4755c17a..87104e57 100644 --- a/libpcsxcore/plugins.h +++ b/libpcsxcore/plugins.h @@ -61,12 +61,7 @@ typedef uint32_t (CALLBACK* GPUreadData)(void); typedef void (CALLBACK* GPUreadDataMem)(uint32_t *, int); typedef long (CALLBACK* GPUdmaChain)(uint32_t *, uint32_t, uint32_t *, int32_t *); typedef void (CALLBACK* GPUupdateLace)(void); -typedef void (CALLBACK* GPUmakeSnapshot)(void); -typedef void (CALLBACK* GPUkeypressed)(int); -typedef void (CALLBACK* GPUdisplayText)(char *); typedef long (CALLBACK* GPUfreeze)(uint32_t, GPUFreeze_t *); -typedef long (CALLBACK* GPUgetScreenPic)(unsigned char *); -typedef long (CALLBACK* GPUshowScreenPic)(unsigned char *); typedef void (CALLBACK* GPUvBlank)(int, int); typedef void (CALLBACK* GPUgetScreenInfo)(int *, int *); @@ -83,12 +78,7 @@ extern GPUwriteStatus GPU_writeStatus; extern GPUwriteData GPU_writeData; extern GPUwriteDataMem GPU_writeDataMem; extern GPUdmaChain GPU_dmaChain; -extern GPUkeypressed GPU_keypressed; -extern GPUdisplayText GPU_displayText; -extern GPUmakeSnapshot GPU_makeSnapshot; extern GPUfreeze GPU_freeze; -extern GPUgetScreenPic GPU_getScreenPic; -extern GPUshowScreenPic GPU_showScreenPic; extern GPUvBlank GPU_vBlank; extern GPUgetScreenInfo GPU_getScreenInfo; @@ -212,8 +202,6 @@ typedef struct { char CdromID[9]; // ie. 'SCPH12345', no \0 trailing character char CdromLabel[11]; void *psxMem; - GPUshowScreenPic GPU_showScreenPic; - GPUdisplayText GPU_displayText; PADsetSensitive PAD_setSensitive; char GPUpath[256]; // paths must be absolute char SPUpath[256]; -- 2.39.5