diff options
-rw-r--r-- | src/mesa/drivers/glide/fxopengl.def | 1 | ||||
-rw-r--r-- | src/mesa/drivers/glide/fxwgl.c | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/drivers/glide/fxopengl.def b/src/mesa/drivers/glide/fxopengl.def index 84614923bae..86ff1001166 100644 --- a/src/mesa/drivers/glide/fxopengl.def +++ b/src/mesa/drivers/glide/fxopengl.def @@ -916,6 +916,7 @@ EXPORTS wglDescribePixelFormat wglGetCurrentContext wglGetCurrentDC + wglGetDefaultProcAddress wglGetLayerPaletteEntries wglGetPixelFormat wglGetProcAddress diff --git a/src/mesa/drivers/glide/fxwgl.c b/src/mesa/drivers/glide/fxwgl.c index 41960209e93..bba6c98cfc5 100644 --- a/src/mesa/drivers/glide/fxwgl.c +++ b/src/mesa/drivers/glide/fxwgl.c @@ -504,6 +504,13 @@ wglGetProcAddress(LPCSTR lpszProc) return (NULL); } +GLAPI PROC GLAPIENTRY +wglGetDefaultProcAddress(LPCSTR lpszProc) +{ + SetLastError(0); + return (NULL); +} + GLAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc) { |