Add header source files into the Dev C++ directory
Change compiler suit in Dev C++
Configure required linkers for graphics
Then add these linkers in the input box – (just copy and paste this line)
-libgcc -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32
Then click on OK to save.
Installation/verification for openGL
OpenGL comes with the X11 installation, to verify, look for the following files:
header file: /usr/include/GL/glut.h
If OpenGL and/or GLUT is not installed on your system, you can install both with:
Ubuntu: sudo apt-get install freeglut3-dev
or
Fedora/RedHat: sudo yum install freeglut-devel
which should install all the dependent packages, including OpenGL itself. You must have sudo/administrator privileges.
In your OpenGL source files, include the following line:
#include <GL/glut.h>
You don’t need to include gl.h and glu.h, as they are already included in glut.h.
To make a GLUT application on the command line, use the following linker options:
-lGL -lGLU -lglut
The process of representing continuous graphics object as a collection of discrete pixels is known as scan conversion.
Scan Converting a Point and a straight Line:
Scan Converting Circle and Ellipse:
copy the files and make new project for dev for openGL programming