DIRECT_GPU(GPUkeypressed),
DIRECT_GPU(GPUmakeSnapshot),
DIRECT_GPU(GPUconfigure),
- DIRECT_GPU(GPUtest),
- DIRECT_GPU(GPUabout),
DIRECT_GPU(GPUgetScreenPic),
DIRECT_GPU(GPUshowScreenPic),
*/
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;
hGPUDriver = SysLoadLibrary(GPUdll);
if (hGPUDriver == NULL) {
- GPU_configure = NULL;
SysMessage (_("Could not load GPU plugin %s!"), GPUdll); return -1;
}
drv = hGPUDriver;
LoadGpuSym0(showScreenPic, "GPUshowScreenPic");
LoadGpuSym0(vBlank, "GPUvBlank");
LoadGpuSym0(getScreenInfo, "GPUgetScreenInfo");
- LoadGpuSym0(configure, "GPUconfigure");
- LoadGpuSym0(test, "GPUtest");
- LoadGpuSym0(about, "GPUabout");
return 0;
}
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
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