summaryrefslogtreecommitdiffstats
path: root/config.tests/x11/opengl/opengl.cpp
blob: ad693793a3b40d3a34d178e129dccbc3872a709c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <GL/gl.h>
#include <GL/glu.h>

#ifndef GLU_VERSION_1_2
#  error "Required GLU version 1.2 not found."
#endif

int main(int, char **)
{
    GLuint x;
    x = 0;
    return 0;
}