diff options
author | Mathias Agopian <mathias@google.com> | 2009-08-10 16:48:22 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2009-08-10 16:48:22 -0700 |
commit | 1d3bcd6e217e7ef177287d06f6fdf6149f453830 (patch) | |
tree | 13a060612c474a8ff481e771ef6853905f0378a8 /opengl/tests/textures | |
parent | fc40bc2e35f73f6efac91f9acca14d8e116a7565 (diff) | |
download | frameworks_native-1d3bcd6e217e7ef177287d06f6fdf6149f453830.zip frameworks_native-1d3bcd6e217e7ef177287d06f6fdf6149f453830.tar.gz frameworks_native-1d3bcd6e217e7ef177287d06f6fdf6149f453830.tar.bz2 |
workaround a bug in the SGX driver that would prevent eglGetConfig to work properly
Diffstat (limited to 'opengl/tests/textures')
-rw-r--r-- | opengl/tests/textures/textures.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opengl/tests/textures/textures.cpp b/opengl/tests/textures/textures.cpp index ee92e79..cbe8ffd 100644 --- a/opengl/tests/textures/textures.cpp +++ b/opengl/tests/textures/textures.cpp @@ -42,11 +42,11 @@ int main(int argc, char** argv) EGLint w, h; EGLDisplay dpy; + EGLNativeWindowType window = android_createDisplaySurface(); + dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); eglInitialize(dpy, &majorVersion, &minorVersion); - EGLNativeWindowType window = android_createDisplaySurface(); - status_t err = EGLUtils::selectConfigForNativeWindow( dpy, configAttribs, window, &config); if (err) { |