diff options
author | Dave Airlie <[email protected]> | 2011-02-15 18:42:48 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-02-15 18:43:56 +1000 |
commit | 4b81c5f6e1ad73e344b1f1b5d5844297ee7b985a (patch) | |
tree | d37c8a917829b0fe1aa127f6afc3e1d816fcc5b4 /src/gallium/drivers/r600/r600_state.c | |
parent | cd8af3b60bf1ab7ec157042d6a63fb7ece25d954 (diff) |
r600g: fix regression in r6/7xx since mipmap rework
I typod this when copy-pasting.
Diffstat (limited to 'src/gallium/drivers/r600/r600_state.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |