diff options
Diffstat (limited to 'core/jni')
-rw-r--r-- | core/jni/com_google_android_gles_jni_EGLImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/jni/com_google_android_gles_jni_EGLImpl.cpp b/core/jni/com_google_android_gles_jni_EGLImpl.cpp index a3ce2a5..50b3302 100644 --- a/core/jni/com_google_android_gles_jni_EGLImpl.cpp +++ b/core/jni/com_google_android_gles_jni_EGLImpl.cpp @@ -351,9 +351,9 @@ not_valid_surface: "Make sure the SurfaceTexture is valid"); return 0; } - + sp<IGraphicBufferProducer> producer(SurfaceTexture_getProducer(_env, native_window)); - window = new Surface(producer); + window = new Surface(producer, true); if (window == NULL) goto not_valid_surface; |