mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-28 11:24:25 +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
|