summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/opengles2/opengles2.cpp
blob: 493530d85bf470f51f80a6f696990d6f7e6b758e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <EGL/egl.h>
#include <GLES2/gl2.h>

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

    return 0;
}