I am considering porting one of my softwares from opengl 2.1 to modern versions (3.x or 4.x).
The GUI is designed with fltk, and includes a FL_GL_Window where I do all the rendering. Now my problem is that I do not understand how to specify the opengl context for this window.
If I would use SDL to create the OpenGL context, I could use something like: SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
Is there something similar for fltk ? Or can it handle only Opengl 2.1 ?