From: Dave Airlie Date: Thu, 3 Feb 2011 23:34:32 +0000 (+1000) Subject: r600g: evergreen CB check for flushed texture X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c643446f982892aeec4298977fbbe1ab92206fb;p=mesa.git r600g: evergreen CB check for flushed texture --- diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c index 00d5d007ddf..73fa1714361 100644 --- a/src/gallium/drivers/r600/evergreen_state.c +++ b/src/gallium/drivers/r600/evergreen_state.c @@ -647,6 +647,12 @@ static void evergreen_cb(struct r600_pipe_context *rctx, struct r600_pipe_state surf = (struct r600_surface *)state->cbufs[cb]; rtex = (struct r600_resource_texture*)state->cbufs[cb]->texture; + + if (rtex->depth && !rtex->is_flushing_texture) { + r600_texture_depth_flush(&rctx->context, state->cbufs[cb]->texture, TRUE); + rtex = rtex->flushed_depth_texture; + } + rbuffer = &rtex->resource; bo[0] = rbuffer->bo; bo[1] = rbuffer->bo;