summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/opengles2/opengles2.cpp
blob: 63c7b35c93a71f8f05e6e7993c4bc6dd785895d0 (plain)
1
2
3
4
5
6
7
8
9
#include <GLES2/gl2.h>

int main(int, char **)
{
    glUniform1f(1, GLfloat(1.0));
    glClear(GL_COLOR_BUFFER_BIT);

    return 0;
}