From 812c314e5161d2b5f91c86ba45b79d4b34046bee Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Fri, 4 Feb 2011 09:36:02 +1000 Subject: [PATCH] r600g: avoid trying to flush the flushing texture. Since these textures still have the depth bit set. Signed-off-by: Dave Airlie --- src/gallium/drivers/r600/r600_blit.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index de54da8714f..af471d0d917 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -134,6 +134,9 @@ void r600_flush_depth_textures(struct r600_pipe_context *rctx) if (!tex->depth) continue; + if (tex->is_flushing_texture) + continue; + r600_blit_uncompress_depth(&rctx->context, tex); } @@ -145,6 +148,9 @@ void r600_flush_depth_textures(struct r600_pipe_context *rctx) if (!tex->depth) continue; + if (tex->is_flushing_texture) + continue; + r600_blit_uncompress_depth(&rctx->context, tex); } } -- 2.30.2