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/auxiliary/util/u_blitter.h | |
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/auxiliary/util/u_blitter.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.h b/src/gallium/auxiliary/util/u_blitter.h index 2632f3ad0dc..725d81c6735 100644 --- a/src/gallium/auxiliary/util/u_blitter.h +++ b/src/gallium/auxiliary/util/u_blitter.h @@ -216,7 +216,8 @@ void util_blitter_copy_texture_view(struct blitter_context *blitter, unsigned dstx, unsigned dsty, struct pipe_sampler_view *src, const struct pipe_box *srcbox, - unsigned src_width0, unsigned src_height0); + unsigned src_width0, unsigned src_height0, + unsigned mask); /** * Helper function to initialize a view for copy_texture_view. |