From a9bf24cf7177ae90bf57544c1e2197d7ba3fd83a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 23 Apr 2002 09:06:03 +0000 Subject: [PATCH] Replaced texture compression extension define so that its #ifndef guard used GL_ARB_texture_compression as natured intended. --- src/osg/Texture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/Texture.cpp b/src/osg/Texture.cpp index f4bda46aa..e9e871e15 100644 --- a/src/osg/Texture.cpp +++ b/src/osg/Texture.cpp @@ -11,7 +11,7 @@ #include -#ifndef PFNGLCOMPRESSEDTEXIMAGE2DARBPROC +#ifndef GL_ARB_texture_compression typedef void (APIENTRY * PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); #endif