piotrek
piotrek

Reputation: 1363

OpenGL constant don't exist

I haven't got GL_GENERATE_MIPMAP_HINT, GL_GENERATE_MIPMAP constatns, why ? I have old version of opengl ? Where can I download new library version ?

Upvotes: 0

Views: 206

Answers (2)

AdilYalcin
AdilYalcin

Reputation: 1177

For easier access to OpenGL extensions (inc. constant values and function bindings) you can either use glew or glee. Interfaces in both of these libraries are similar. Glew provides access to the newest OpenGL extensions and core specifications.

Upvotes: 0

Related Questions