st/egl: Flush resources before presentation (android - bug 77966)
authorPaulo Sergio Travaglia <pstglia@gmail.com>
Fri, 2 May 2014 15:00:11 +0000 (12:00 -0300)
committerChia-I Wu <olvaffe@gmail.com>
Mon, 5 May 2014 00:33:14 +0000 (08:33 +0800)
[olv: Use the real name provided by the patch author.  Ideally this could be
moved to somewhere higher level so that we would not need to create a pipe
context to flush resources.  Plus, it is not clear if flushing resources for
another context is valid.]

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
src/gallium/state_trackers/egl/android/native_android.cpp

index e73d031..8620ed8 100644 (file)
@@ -396,6 +396,13 @@ android_surface_swap_buffers(struct native_surface *nsurf)
    struct android_surface *asurf = android_surface(nsurf);
    struct android_display *adpy = asurf->adpy;
 
+   struct native_display *ndpy = &adpy->base;
+   struct pipe_context *pipe = ndpy_get_copy_context(ndpy);
+
+   /* flush buffer */
+   pipe->flush_resource(pipe, asurf->buf_res);
+   pipe->flush(pipe, NULL, 0);
+
    android_surface_enqueue_buffer(&asurf->base);
 
    asurf->stamp++;