source: trunk/config.tests/unix/opengles1/opengles1.cpp@ 497

Last change on this file since 497 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 197 bytes
Line 
1#include <GLES/gl.h>
2#include <GLES/egl.h>
3
4int main(int, char **)
5{
6 GLfloat a = 1.0f;
7 eglInitialize(0, 0, 0);
8 glColor4f(a, a, a, a);
9 glClear(GL_COLOR_BUFFER_BIT);
10
11 return 0;
12}
Note: See TracBrowser for help on using the repository browser.