drop some unused funcs
authornotaz <notasas@gmail.com>
Sat, 25 Nov 2023 22:11:30 +0000 (00:11 +0200)
committernotaz <notasas@gmail.com>
Sat, 25 Nov 2023 23:01:51 +0000 (01:01 +0200)
removed in a plugin but not the core

frontend/plugin.c
libpcsxcore/plugins.c
libpcsxcore/plugins.h

index c3c104a..0235463 100644 (file)
@@ -219,8 +219,6 @@ static const struct {
        DIRECT_GPU(GPUkeypressed),
        DIRECT_GPU(GPUmakeSnapshot),
        DIRECT_GPU(GPUconfigure),
-       DIRECT_GPU(GPUtest),
-       DIRECT_GPU(GPUabout),
        DIRECT_GPU(GPUgetScreenPic),
        DIRECT_GPU(GPUshowScreenPic),
 */
index bab152c..9a39982 100644 (file)
@@ -31,9 +31,6 @@ static s64 cdOpenCaseTime = 0;
 GPUupdateLace         GPU_updateLace;
 GPUinit               GPU_init;
 GPUshutdown           GPU_shutdown;
-GPUconfigure          GPU_configure;
-GPUtest               GPU_test;
-GPUabout              GPU_about;
 GPUopen               GPU_open;
 GPUclose              GPU_close;
 GPUreadStatus         GPU_readStatus;
@@ -214,7 +211,6 @@ static int LoadGPUplugin(const char *GPUdll) {
 
        hGPUDriver = SysLoadLibrary(GPUdll);
        if (hGPUDriver == NULL) {
-               GPU_configure = NULL;
                SysMessage (_("Could not load GPU plugin %s!"), GPUdll); return -1;
        }
        drv = hGPUDriver;
@@ -238,9 +234,6 @@ static int LoadGPUplugin(const char *GPUdll) {
        LoadGpuSym0(showScreenPic, "GPUshowScreenPic");
        LoadGpuSym0(vBlank, "GPUvBlank");
        LoadGpuSym0(getScreenInfo, "GPUgetScreenInfo");
-       LoadGpuSym0(configure, "GPUconfigure");
-       LoadGpuSym0(test, "GPUtest");
-       LoadGpuSym0(about, "GPUabout");
 
        return 0;
 }
index 5149d46..d080bae 100644 (file)
@@ -60,9 +60,6 @@ typedef uint32_t (CALLBACK* GPUreadData)(void);
 typedef void (CALLBACK* GPUreadDataMem)(uint32_t *, int);\r
 typedef long (CALLBACK* GPUdmaChain)(uint32_t *,uint32_t, uint32_t *);\r
 typedef void (CALLBACK* GPUupdateLace)(void);\r
-typedef long (CALLBACK* GPUconfigure)(void);\r
-typedef long (CALLBACK* GPUtest)(void);\r
-typedef void (CALLBACK* GPUabout)(void);\r
 typedef void (CALLBACK* GPUmakeSnapshot)(void);\r
 typedef void (CALLBACK* GPUkeypressed)(int);\r
 typedef void (CALLBACK* GPUdisplayText)(char *);\r
@@ -82,9 +79,6 @@ typedef void (CALLBACK* GPUgetScreenInfo)(int *, int *);
 extern GPUupdateLace    GPU_updateLace;\r
 extern GPUinit          GPU_init;\r
 extern GPUshutdown      GPU_shutdown; \r
-extern GPUconfigure     GPU_configure;\r
-extern GPUtest          GPU_test;\r
-extern GPUabout         GPU_about;\r
 extern GPUopen          GPU_open;\r
 extern GPUclose         GPU_close;\r
 extern GPUreadStatus    GPU_readStatus;\r