GL_RESCALE_NORMALS arg not found?

Richard Wright’s “OPENGL SUPERBIBLE” mentions use of “glEnable(GL_RESCALE_NORMALS)” but MS Visual C++ 6.0 does not recognize argument GL_RESCALE_NORMALS or GL_RESCALE_NORMAL. It does however recognize GL_NORMALIZE. What’s up with that?

GL_RESCALE_NORMAL was a part of an extension… not sure which one. Best bet is find glext.h which has all of the enumerated constants as well as function prototypes for most if not all extensions. Can be found here . Not sure if it is the most current, but it should do.

Thanks. Got it

Originally posted by shinpaughp:
GL_RESCALE_NORMAL was a part of an extension… not sure which one. Best bet is find glext.h which has all of the enumerated constants as well as function prototypes for most if not all extensions. Can be found here . Not sure if it is the most current, but it should do.