A Short Introduction to OpenGL

Here is a short introduction to OpenGL.

Click above image to watch the 30 minutes presentation.

You can get the slides here: opengl.pdf

See github.com/wedesoft/opengl for source code of slides and opengl-example.c.

Here are instructions on how to compile and run the program with GCC under GNU/Linux:

sudo apt install build-essential libglew-dev libglfw3-dev
wget https://www.wedesoft.de/downloads/opengl-example.c
gcc -o opengl-example opengl-example.c -lglfw -lGLEW -lGL -lm
./opengl-example