官方網站

http://www.opengl.org

使用opengl除了繪圖外,還要一項重要的特徵:遊戲發展

http://nehe.gamedev.net

opengl-glx

函式庫所在位置

/usr/X11R6/include/X11
/usr/X11R6/include/GL

最基礎的headers引用進來

#include <stdio.h>
#include <GL/glx.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <X11/extensions/xf86vmode.h>
#include <X11/keysym.h>

編譯方法

apt-get install xlibmesa-glu-dev xlibs-dev
gcc lesson01.c -o lesson01 -L/usr/X11R6/lib -lGL -lGLU -lXxf86vm