diff options
author | Jack Palevich <jackpal@google.com> | 2009-09-28 18:28:07 -0700 |
---|---|---|
committer | Jack Palevich <jackpal@google.com> | 2009-09-28 18:28:07 -0700 |
commit | 38d3c2a850e986ed37126127fc2939fae9de76c6 (patch) | |
tree | 10d4b58b229952ddba74c998b454b67ce35c5662 /opengl | |
parent | 34329eed2ccc5fa0efe95bb4c87fbe38538978bc (diff) | |
download | frameworks_native-38d3c2a850e986ed37126127fc2939fae9de76c6.zip frameworks_native-38d3c2a850e986ed37126127fc2939fae9de76c6.tar.gz frameworks_native-38d3c2a850e986ed37126127fc2939fae9de76c6.tar.bz2 |
Don't ask for pbuffer support, because we don't use any pbuffers.
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/tests/tritex/tritex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/tritex/tritex.cpp b/opengl/tests/tritex/tritex.cpp index 629b53c..3365ab4 100644 --- a/opengl/tests/tritex/tritex.cpp +++ b/opengl/tests/tritex/tritex.cpp @@ -123,7 +123,7 @@ int init_gl_surface(void) EGLConfig myConfig = {0};
EGLint attrib[] =
{
- EGL_SURFACE_TYPE, EGL_PBUFFER_BIT|EGL_WINDOW_BIT, + EGL_SURFACE_TYPE, EGL_WINDOW_BIT, EGL_DEPTH_SIZE, 16,
EGL_NONE
};
|