From: Jakob Bornecrantz Date: Mon, 26 Apr 2010 13:59:46 +0000 (+0100) Subject: st/dri: Use flush function of old context not new X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae79e778f7fae99812ade79ecf5cf3c783d2a93b;p=mesa.git st/dri: Use flush function of old context not new --- diff --git a/src/gallium/state_trackers/dri/common/dri_context.c b/src/gallium/state_trackers/dri/common/dri_context.c index 0e5ab5b5198..a144247d0c6 100644 --- a/src/gallium/state_trackers/dri/common/dri_context.c +++ b/src/gallium/state_trackers/dri/common/dri_context.c @@ -151,7 +151,7 @@ dri_make_current(__DRIcontext * cPriv, old_st = stapi->get_current(stapi); if (old_st && old_st != ctx->st) - ctx->st->flush(old_st, PIPE_FLUSH_RENDER_CACHE, NULL); + old_st->flush(old_st, PIPE_FLUSH_RENDER_CACHE, NULL); ++ctx->bind_count;