From 89a4dcbbd3358faeaddadfcef6bb072b48d20205 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 6 Jul 2004 06:13:34 +0000 Subject: [PATCH] Added GL_TEXTURE_DEPTH #define for Win32 build --- include/osg/Texture | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/osg/Texture b/include/osg/Texture index b8278760a..7a4c64eb5 100644 --- a/include/osg/Texture +++ b/include/osg/Texture @@ -117,6 +117,10 @@ #define GL_MAX_TEXTURE_UNITS 0x84E2 #endif +#ifndef GL_TEXTURE_DEPTH +#define GL_TEXTURE_DEPTH 0x8071 +#endif + namespace osg { /** Texture base class which encapsulates OpenGl texture functionality which common betweent the various types of OpenGL textures.*/