SFML community forums

Help => Graphics => Topic started by: TechRogue on January 21, 2012, 06:55:47 am

Title: Using OpenGL without additional libraries
Post by: TechRogue on January 21, 2012, 06:55:47 am
I want to expand my modest little engine to support basic 3D, so I've been looking around for some good OpenGL tutorials. Unfortunately, so far they've all been less than preferable for one of two reasons:


I'm using SFML2. Can anybody point me at a good resource that would allow me to learn modern OpenGL without using any other libraries?

If it's possible to use GLUT/GLFW in tandem with SFML, I'm not against that option.  :wink:
Title: Using OpenGL without additional libraries
Post by: Laurent on January 21, 2012, 09:29:06 am
Quote
If it's possible to use GLUT/GLFW in tandem with SFML, I'm not against that option.

Why? They all do the same job, you just need one of them.
Title: Using OpenGL without additional libraries
Post by: TechRogue on January 21, 2012, 08:28:54 pm
The thing is, the tutorials that use them also make use of utility functions like loading shaders. I can figure out enough of the differences between using, say, GLUT vs OpenGL (use window.Display() instead of glutSwapBuffers(), for example), but there are others where I don't know where to start.