Win32 Mingw...

I’m Totally New To This, i have mingw for win32, and i know it has 3 GL headers… Do I need to download more to do opengl programming, and how do i compile, do i need to include lib’s?

Hi, if you want to use mingw under Windows I suggest you to use Dev-C++ which is a free IDE for Mingw, more user-friendly and easy to use than a compiler alone.

You need to include libraries you wat to use
#include <gl.h>
#include <glu.h>

You need to add them to the linker, with Dev-C++
-lopengl -glu32 etc… Try google there is a lot of tutorials and on this forum there is a lot of similar question which are resolved…

Good luck

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.