mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-31 04:44:26 +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 |