GLclampf in glext.h

Here is GLclampf defined?

I get about 100 errors, because in glext.h nowhere is GLclampf defined.

What shall i do? I am using the newest one. I have downloaded it today?

Thanks, Austrian Coder

Include gl.h BEFORE glext.h. That should have GLclampf and all the other GL types defined. And since C/C++ gets compiled top down, you need to make sure the order of the headers is correct.

Thanks… works now