diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-15 19:00:37 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-15 19:00:37 +0000 |
commit | 8636981646b81853283adf3d850e62a23d326763 (patch) | |
tree | 69ad37fb9e099e12fd8e4ecfdcb4345666a198b8 /src/glu/sgi/libutil/mipmap.c | |
parent | 54d3ab48786c973189ce3cd4bb0d3943e04e75e6 (diff) |
replace GLAPI w/ static and init var to 0 (Michel Donais)
Diffstat (limited to 'src/glu/sgi/libutil/mipmap.c')
-rw-r--r-- | src/glu/sgi/libutil/mipmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glu/sgi/libutil/mipmap.c b/src/glu/sgi/libutil/mipmap.c index 3e45f80871..5c28c858ec 100644 --- a/src/glu/sgi/libutil/mipmap.c +++ b/src/glu/sgi/libutil/mipmap.c @@ -6597,7 +6597,7 @@ typedef void (GLAPIENTRY *TexImage3Dproc)( GLenum target, GLint level, GLenum format, GLenum type, const GLvoid *pixels ); -GLAPI TexImage3Dproc pTexImage3D; +static TexImage3Dproc pTexImage3D = 0; #ifndef _WIN32 # include <dlfcn.h> |