Location of ARB/EXT functions/parameters ?

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Location of ARB/EXT functions/parameters ?

Bruno
Where can i find most of the ARB/EXT functions/parameters ?

Examples are:
GL_FRAGMENT_SHADER_ARB
GL_FRAMEBUFFER_EXT
glGenFramebuffersEXT

Best Regards,
Reply | Threaded
Open this post in threaded view
|

Re: Location of ARB/EXT functions/parameters ?

Demoscene Passivist
Administrator
As a rule of thumb u generally have to remove "ARB"/"EXT" from all functions and constants.

Try using ...

import static javax.media.opengl.GL2.*;

... and then ...

GL_FRAGMENT_SHADER
GL_FRAMEBUFFER
glGenFramebuffers