summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/opengles1/opengles1.cpp
blob: a0060b4635a09712748bef4bff281a080fd5e386 (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 **)
{
    GLfloat a = 1.0f;
    eglInitialize(0, 0, 0);
    glColor4f(a, a, a, a);
    glClear(GL_COLOR_BUFFER_BIT);

    return 0;
}