Add a define back so we work without GLEW 1.6, Also I missed a line when I was fixing binding sampler locations last night when I was tired.

This commit is contained in:
Ryan Houdek
2011-12-19 19:10:05 -06:00
committed by Sonicadvance1
parent 1aad2e9e56
commit 7cb3d86e31
2 changed files with 7 additions and 1 deletions

View File

@ -121,4 +121,9 @@ extern CGcontext g_cgcontext;
extern CGprofile g_cgvProf, g_cgfProf;
#endif
// Isn't defined if we aren't using GLEW 1.6
#ifndef GL_ONE_MINUS_SRC1_ALPHA
#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB
#endif
#endif // _GLINIT_H_