diff options
author | Dave Airlie <[email protected]> | 2011-02-01 17:20:53 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-02-03 14:19:37 +1000 |
commit | 417cfa60b2fec89423be6ce51ab8b1f3063abb2a (patch) | |
tree | 054da3d3379b4defc5b6d5883125868a96db825e /src/gallium/drivers/r600/r600_texture.c | |
parent | 5730d565498cb8b4608fb7ed526172bc4bd84cb9 (diff) |
r600g: fix depth hw resource copies.
With the previous fixes we can now enabled hw depth copies
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index 1d0e482253e..c773c4b84a6 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -291,15 +291,6 @@ static boolean permit_hardware_blit(struct pipe_screen *screen, else bind = PIPE_BIND_RENDER_TARGET; - /* See r600_resource_copy_region: there is something wrong - * with depth resource copies at the moment so avoid them for - * now. - */ - if (util_format_get_component_bits(res->format, - UTIL_FORMAT_COLORSPACE_ZS, - 0) != 0) - return FALSE; - if (!screen->is_format_supported(screen, res->format, res->target, |