summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/opengles1cl/opengles1cl.cpp
blob: f864276176eadf67aa7af5776d1d80d425b043e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <GLES/gl.h>
#include <GLES/egl.h>

int main(int, char **)
{
    GLfixed a = 0;
    eglInitialize(0, 0, 0);
    glColor4x(a, a, a, a);
    glClear(GL_COLOR_BUFFER_BIT);

    return 0;
}