diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-31 00:31:35 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-31 00:31:35 +0000 |
commit | 38e0d50edca119ccd58c6861158b5f76bf72c195 (patch) | |
tree | 1969c5003a42b28bde99faeaab379f08c943e91e | |
parent | 9d6b0365654bfd5a7116cbdae7e6ca29209c13bd (diff) |
call _mesa_flush_pb() in _swrast_render_finish()
-rw-r--r-- | src/mesa/swrast/s_context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 4cdb4f87fb..9710ed0e31 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -1,7 +1,7 @@ /* * Mesa 3-D graphics library - * Version: 4.0.3 + * Version: 4.0.4 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -539,6 +539,7 @@ void _swrast_render_finish( GLcontext *ctx ) { SWcontext *swrast = SWRAST_CONTEXT(ctx); + _mesa_flush_pb(ctx); if (swrast->Driver.SpanRenderFinish) swrast->Driver.SpanRenderFinish( ctx ); } |