diff options
author | Marek Olšák <[email protected]> | 2012-08-09 17:21:10 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-15 19:20:58 +0200 |
commit | 0f86915c5322b096b7154b6c84e21288074b775d (patch) | |
tree | 29229641e61829bd03d51c782b17be635823c501 /src/gallium/auxiliary/util/u_blitter.h | |
parent | 94b634eca0e2bd32d4b5bd92d06d510eae8a5625 (diff) |
r600g: implement MSAA color resolve
Diffstat (limited to 'src/gallium/auxiliary/util/u_blitter.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.h b/src/gallium/auxiliary/util/u_blitter.h index 1881e6ae6ce..1207a9ae306 100644 --- a/src/gallium/auxiliary/util/u_blitter.h +++ b/src/gallium/auxiliary/util/u_blitter.h @@ -300,6 +300,14 @@ void util_blitter_custom_depth_stencil(struct blitter_context *blitter, unsigned sample_mask, void *dsa_stage, float depth); +void util_blitter_resolve_color_custom(struct blitter_context *blitter, + struct pipe_resource *dst, + unsigned dst_level, + unsigned dst_layer, + struct pipe_resource *src, + unsigned src_layer, + void *custom_blend); + /* The functions below should be used to save currently bound constant state * objects inside a driver. The objects are automatically restored at the end * of the util_blitter_{clear, copy_region, fill_region} functions and then |