Remove unneeded OpenGL loading function code (#1006)

This commit is contained in:
WaluigiWare64
2021-02-17 20:53:07 +00:00
committed by GitHub
parent 64c6654d94
commit 712919ec41
4 changed files with 0 additions and 19 deletions

View File

@ -328,16 +328,6 @@ void EmuThread::deinitOpenGL()
delete oglSurface;
}
void* oglGetProcAddress(const char* proc)
{
return emuThread->oglGetProcAddress(proc);
}
void* EmuThread::oglGetProcAddress(const char* proc)
{
return (void*)oglContext->getProcAddress(proc);
}
void EmuThread::run()
{
bool hasOGL = mainWindow->hasOGL;