diff options
author | Lauri Kasanen <[email protected]> | 2011-08-19 18:23:10 +0300 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-19 16:49:33 -0600 |
commit | 421235d42ad9921fd45332ec7b33bcee5c1ad33d (patch) | |
tree | 0de533100d83ae54b35449c0fed14c9d0e3b4258 /src/gallium/state_trackers/dri/sw | |
parent | 6a6441fc03b4f28bfd2619e4e6d260cf6ea82554 (diff) |
st/dri: Bind the post-processing queue to dri
Signed-off-by: Lauri Kasanen <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/dri/sw')
-rw-r--r-- | src/gallium/state_trackers/dri/sw/drisw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/dri/sw/drisw.c b/src/gallium/state_trackers/dri/sw/drisw.c index a1879a8f46a..082df55e8ea 100644 --- a/src/gallium/state_trackers/dri/sw/drisw.c +++ b/src/gallium/state_trackers/dri/sw/drisw.c @@ -136,6 +136,9 @@ drisw_swap_buffers(__DRIdrawable *dPriv) ptex = drawable->textures[ST_ATTACHMENT_BACK_LEFT]; if (ptex) { + if (ctx->pp && drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]) + pp_run(ctx->pp, ptex, ptex, drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]); + ctx->st->flush(ctx->st, ST_FLUSH_FRONT, NULL); drisw_copy_to_front(dPriv, ptex); |