aboutsummaryrefslogtreecommitdiff
path: root/code/egl/GenerateQGL.pl
diff options
context:
space:
mode:
authorFathi Boudra <fabo@debian.org>2011-10-17 11:10:40 +0300
committerFathi Boudra <fabo@debian.org>2011-10-17 11:10:40 +0300
commit4a045fcd93b80671069eaddde3b4298ec9f9b646 (patch)
treeb1de7a2c02229f370d72283693a4f94a1e9a990e /code/egl/GenerateQGL.pl
parent69de9fbf97b8451b6f170a780091370d10f1896b (diff)
Use GL ES2:
- fix headers - link against libGLESv2
Diffstat (limited to 'code/egl/GenerateQGL.pl')
-rwxr-xr-xcode/egl/GenerateQGL.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/egl/GenerateQGL.pl b/code/egl/GenerateQGL.pl
index 6c1372b..f60e495 100755
--- a/code/egl/GenerateQGL.pl
+++ b/code/egl/GenerateQGL.pl
@@ -1,7 +1,7 @@
#!/usr/bin/perl
open(INPUT_FILE, ">/tmp/input-$$.h") || die "$!";
-print INPUT_FILE "#import <GLES/gl.h>\n";
+print INPUT_FILE "#import <GLES2/gl2.h>\n";
close INPUT_FILE;
open(CPP, "/usr/bin/cpp /tmp/input-$$.h|") || die "$!";