From: Dave Airlie Date: Tue, 15 Feb 2011 08:42:48 +0000 (+1000) Subject: r600g: fix regression in r6/7xx since mipmap rework X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b81c5f6e1ad73e344b1f1b5d5844297ee7b985a;p=mesa.git r600g: fix regression in r6/7xx since mipmap rework I typod this when copy-pasting. --- diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c index bd591bdd8cc..5e6821004df 100644 --- a/src/gallium/drivers/r600/r600_state.c +++ b/src/gallium/drivers/r600/r600_state.c @@ -709,7 +709,7 @@ static void r600_cb(struct r600_pipe_context *rctx, struct r600_pipe_state *rsta /* XXX quite sure for dx10+ hw don't need any offset hacks */ offset = r600_texture_get_offset(rtex, level, state->cbufs[cb]->u.tex.first_layer); - pitch = rtex->pitch_in_blocks[0] / 8 - 1; + pitch = rtex->pitch_in_blocks[level] / 8 - 1; slice = rtex->pitch_in_blocks[level] * surf->aligned_height / 64 - 1; ntype = 0; desc = util_format_description(surf->base.format);