diff options
author | Marek Olšák <[email protected]> | 2012-08-13 23:37:30 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-15 19:20:58 +0200 |
commit | e0cc61bd91f5ef84bacaf5e7c6cda9eeefed478d (patch) | |
tree | 40bf40feb4332d2be8ff13eda134d2f349331662 /src/gallium/drivers/r600 | |
parent | b3b5bb9ddb05989b2dc5fc17f88491bbd0e6ecac (diff) |
gallium/u_blitter: document custom meta helpers
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index f3a3b8f89bf..0ddc7126d49 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -320,7 +320,7 @@ static void r600_color_resolve(struct pipe_context *ctx, if (is_simple_resolve(info)) { r600_blitter_begin(ctx, R600_COLOR_RESOLVE); - util_blitter_resolve_color_custom(rctx->blitter, + util_blitter_custom_resolve_color(rctx->blitter, info->dst.res, info->dst.level, info->dst.layer, info->src.res, info->src.layer, rctx->custom_blend_resolve); @@ -345,7 +345,7 @@ static void r600_color_resolve(struct pipe_context *ctx, /* XXX use scissor, so that only the needed part of the resource is resolved */ r600_blitter_begin(ctx, R600_COLOR_RESOLVE); - util_blitter_resolve_color_custom(rctx->blitter, + util_blitter_custom_resolve_color(rctx->blitter, tmp, 0, 0, info->src.res, info->src.layer, rctx->custom_blend_resolve); |