|
From: Brian P. <br...@va...> - 2001-05-31 19:11:53
|
Jeffrey Mehlhorn wrote: > > Brian, > > Could you send me the two lines of code that you > added to your glext.h file so that I can get > glean to build. I guess the correct values of > DOT3_RGB_EXT and DOT3_RGBA_EXT are not that much > of a concern, but I figure if you know what they > should be it wouldn't hurt. #ifndef GL_ARB_texture_env_dot3 #define GL_DOT3_RGB_ARB 0x86AE #define GL_DOT3_RGBA_ARB 0x86AF #endif #ifndef GL_EXT_texture_env_dot3 #define GL_DOT3_RGB_EXT 0x8740 #define GL_DOT3_RGBA_EXT 0x8741 #endif You should also have: #ifndef GL_ARB_texture_env_dot3 #define GL_ARB_texture_env_dot3 1 #endif #ifndef GL_EXT_texture_env_dot3 #define GL_EXT_texture_env_dot3 1 #endif -Brian |