diff options
author | Brian Paul <[email protected]> | 2000-08-02 20:29:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-08-02 20:29:03 +0000 |
commit | 585d191ae70b12aa9eb190746e6945aaa605b9ab (patch) | |
tree | 1c8bfe0a0623c054df12534ee71b8a868c962b5a /src/mesa/drivers/windows/wgl.c | |
parent | bd0f7f42d6413577b78c342ab2f73b8d05c81d2f (diff) |
updates from [email protected]
Diffstat (limited to 'src/mesa/drivers/windows/wgl.c')
-rw-r--r-- | src/mesa/drivers/windows/wgl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/windows/wgl.c b/src/mesa/drivers/windows/wgl.c index 5954833df6e..93a64983abe 100644 --- a/src/mesa/drivers/windows/wgl.c +++ b/src/mesa/drivers/windows/wgl.c @@ -1,4 +1,4 @@ -/* $Id: wgl.c,v 1.2 1999/09/19 09:59:20 tjump Exp $ */ +/* $Id: wgl.c,v 1.3 2000/08/02 20:29:03 brianp Exp $ */ /* * This library is free software; you can redistribute it and/or @@ -30,8 +30,9 @@ extern "C" { #endif #include <windows.h> - +#define GL_GLEXT_PROTOTYPES #include <GL/gl.h> +#include <GL/glext.h> //#include <GL/glu.h> #ifdef __cplusplus @@ -90,7 +91,7 @@ struct __extensions__ ext[] = { { (PROC)glGetColorTableParameterivEXT, "glGetColorTableParameterivEXT" }, { (PROC)glPointParameterfEXT, "glPointParameterfEXT" }, { (PROC)glPointParameterfvEXT, "glPointParameterfvEXT" }, - { (PROC)glBlendFuncSeparateINGR, "glBlendFuncSeparateINGR" }, + { (PROC)glBlendFuncSeparateEXT, "glBlendFuncSeparateEXT" }, { (PROC)glLockArraysEXT, "glLockArraysEXT" }, { (PROC)glUnlockArraysEXT, "glUnlockArraysEXT" } }; |