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

int main(int, char **)
{
    GLfloat a = 1.0f;
    glColor4f(a, a, a, a);
    glClear(GL_COLOR_BUFFER_BIT);

    return 0;
}