diff options
author | Chad Versace <[email protected]> | 2012-08-09 09:21:21 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-08-14 16:19:25 -0700 |
commit | a43599d1d1a583b25c0a63c28c0a5001387fa518 (patch) | |
tree | 58dd160d3edc1d03e0f68e656a81fd81083808b5 /src/mesa | |
parent | 38b748ce29a6415558bbe4886589134e3db047c8 (diff) |
intel: Clean up intel_flush_front
Stop repeating ourselves. Replace the 4 instances of
`driContext->driDrawablePriv` with `driDrawable`.
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_context.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index c37d89d1150..acd59174c70 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -276,14 +276,15 @@ intel_flush_front(struct gl_context *ctx) { struct intel_context *intel = intel_context(ctx); __DRIcontext *driContext = intel->driContext; + __DRIdrawable *driDrawable = driContext->driDrawablePriv; __DRIscreen *const screen = intel->intelScreen->driScrnPriv; if (_mesa_is_winsys_fbo(ctx->DrawBuffer) && intel->front_buffer_dirty) { if (screen->dri2.loader->flushFrontBuffer != NULL && - driContext->driDrawablePriv && - driContext->driDrawablePriv->loaderPrivate) { - (*screen->dri2.loader->flushFrontBuffer)(driContext->driDrawablePriv, - driContext->driDrawablePriv->loaderPrivate); + driDrawable && + driDrawable->loaderPrivate) { + screen->dri2.loader->flushFrontBuffer(driDrawable, + driDrawable->loaderPrivate); /* We set the dirty bit in intel_prepare_render() if we're * front buffer rendering once we get there. |