From 9b784069ce76e1914eaafac0542458f6a84d9fc0 Mon Sep 17 00:00:00 2001 From: Cooper Yuan Date: Tue, 16 Aug 2011 09:32:10 +0800 Subject: [PATCH] dri2: add code to dri2_Flush extension. It's going to flush client's commands in eglWaitClient(). Before this, egl applications using pixmap or pbuffer flicker because of no flush. Reviewed-by: Alan Hourihane --- src/gallium/state_trackers/dri/drm/dri2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/state_trackers/dri/drm/dri2.c b/src/gallium/state_trackers/dri/drm/dri2.c index d491e46ab16..908a735234e 100644 --- a/src/gallium/state_trackers/dri/drm/dri2.c +++ b/src/gallium/state_trackers/dri/drm/dri2.c @@ -46,6 +46,10 @@ static void dri2_flush_drawable(__DRIdrawable *draw) { + struct dri_drawable *drawable = dri_drawable(draw); + struct dri_context *ctx = dri_get_current(draw->driScreenPriv); + + ctx->st->flush(ctx->st, 0, NULL); } static void -- 2.30.2