get the OpenGL renderer going.

sorta.

(also make the blackmagic_II branch obsolete in the process)
This commit is contained in:
Arisotura
2020-05-25 18:25:50 +02:00
parent 10f9eda58a
commit 36f4cdbbbf
13 changed files with 1241 additions and 42 deletions

View File

@ -56,6 +56,7 @@
char* EmuDirectory;
void emuStop();
void* oglGetProcAddress(const char* proc);
namespace Platform
@ -418,7 +419,7 @@ void Semaphore_Post(void* sema)
void* GL_GetProcAddress(const char* proc)
{
return NULL;//uiGLGetProcAddress(proc);
return oglGetProcAddress(proc);
}