diff options
author | Marek Olšák <[email protected]> | 2017-05-30 23:52:07 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-07 18:10:50 +0200 |
commit | a893c916973384ad64f20159cca04c0e71652f36 (patch) | |
tree | a633036f381624f6ca67702d68572bb97cb38e0f /src/gallium/drivers/r300 | |
parent | 4a88c7774cfae0da9f0819771efdbfb881f8af6c (diff) |
gallium/u_blitter: use 2D_ARRAY for cubemap blits if possible
so that we can use TXF.
The cubemap blit pixel shader code size: 148 -> 92 bytes
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300')
-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 434cf38c81b..8fda727f351 100644 --- a/src/gallium/drivers/r300/r300_blit.c +++ b/src/gallium/drivers/r300/r300_blit.c @@ -567,7 +567,7 @@ static void r300_resource_copy_region(struct pipe_context *pipe, * colorbuffers. */ util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); - util_blitter_default_src_texture(&src_templ, src, src_level); + util_blitter_default_src_texture(r300->blitter, &src_templ, src, src_level); layout = util_format_description(dst_templ.format)->layout; |