diff options
author | Marek Olšák <[email protected]> | 2012-07-27 21:44:17 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-04 13:53:07 +0200 |
commit | ef1bf6d69e99d9a12557a09eccaf4f2b6c628997 (patch) | |
tree | 294ae7cef0f3ad1eb29f6505be8ec4ac41563e22 /src/gallium/drivers | |
parent | 88426780479743036993a0fcd112232d2792690a (diff) |
gallium/u_blitter: add ability to blit only depth or only stencil
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r300/r300_blit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_blit.c b/src/gallium/drivers/r300/r300_blit.c index 8d82bb920f6..0bfafd93398 100644 --- a/src/gallium/drivers/r300/r300_blit.c +++ b/src/gallium/drivers/r300/r300_blit.c @@ -579,7 +579,7 @@ static void r300_resource_copy_region(struct pipe_context *pipe, r300_blitter_begin(r300, R300_COPY); util_blitter_copy_texture_view(r300->blitter, dst_view, dstx, dsty, src_view, src_box, - src_width0, src_height0); + src_width0, src_height0, PIPE_MASK_RGBAZS); r300_blitter_end(r300); pipe_surface_reference(&dst_view, NULL); |