OpenGL Extensions

Hello !

I begin with juce and i would like to know how can i add an extension without modify your library (USE_FUNCTION …) but using your api. I want to add glMapBuffer and glUnmapBuffer. I can do that manually but in this case those functions will not be in your OpenGLContext class (extentions).

Thanks,

Kakou

what happens if you try requesting and using them in your `renderOpenGL’ routine.

can that work?

Hello,

yes that could works but i wanted to add them to OpenGLExtensionFunctions but i think its not possible. Im gonna do like you said.

Thanks