diff options
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r300/r300_blit.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_blit.c b/src/gallium/drivers/r300/r300_blit.c index 1053706ad57..f2c67c0a113 100644 --- a/src/gallium/drivers/r300/r300_blit.c +++ b/src/gallium/drivers/r300/r300_blit.c @@ -398,7 +398,7 @@ void r300_decompress_zmask(struct r300_context *r300) r300_mark_atom_dirty(r300, &r300->hyperz_state); r300_blitter_begin(r300, R300_DECOMPRESS); - util_blitter_clear_depth_custom(r300->blitter, fb->width, fb->height, 0, + util_blitter_custom_clear_depth(r300->blitter, fb->width, fb->height, 0, r300->dsa_decompress_zmask); r300_blitter_end(r300); 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); |