From 5ba139a4c3cc15420762bb4a75ca36f7c936213b Mon Sep 17 00:00:00 2001 From: "SND\\edgbla_cp" Date: Sun, 10 Jul 2011 10:29:30 +0000 Subject: gpu gte acuracy interface. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@68598 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/plugins.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libpcsxcore/plugins.c') diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index dca6e7b6..28c9c327 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -54,6 +54,7 @@ GPUregisterCallback GPU_registerCallback; GPUidle GPU_idle; GPUvisualVibration GPU_visualVibration; GPUcursor GPU_cursor; +GPUaddVertex GPU_addVertex; CDRinit CDR_init; CDRshutdown CDR_shutdown; @@ -223,6 +224,7 @@ void CALLBACK GPU__registerCallback(void (CALLBACK *callback)(int)) {} void CALLBACK GPU__idle(void) {} void CALLBACK GPU__visualVibration(unsigned long iSmall, unsigned long iBig) {} void CALLBACK GPU__cursor(int player, int x, int y) {} +void CALLBACK GPU__addVertex(short sx,short sy,s64 fx,s64 fy,s64 fz) {} #define LoadGpuSym1(dest, name) \ LoadSym(GPU_##dest, GPU##dest, name, TRUE); @@ -267,6 +269,7 @@ static int LoadGPUplugin(const char *GPUdll) { LoadGpuSym0(idle, "GPUidle"); LoadGpuSym0(visualVibration, "GPUvisualVibration"); LoadGpuSym0(cursor, "GPUcursor"); + LoadGpuSym0(addVertex, "GPUaddVertex"); LoadGpuSym0(configure, "GPUconfigure"); LoadGpuSym0(test, "GPUtest"); LoadGpuSym0(about, "GPUabout"); -- cgit v1.2.3