mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
253 B
C++
13 lines
253 B
C++
#include "stdafx.h"
|
|
#include "OpenGL.h"
|
|
|
|
void InitProcTable()
|
|
{
|
|
#define OPENGL_PROC(p, n) n = (p)wglGetProcAddress(#n)
|
|
#include "GLProcTable.tbl"
|
|
#undef OPENGL_PROC
|
|
}
|
|
|
|
#define OPENGL_PROC(p, n) p n = NULL
|
|
#include "GLProcTable.tbl"
|
|
#undef OPENGL_PROC |