From: Dave Airlie Date: Sat, 26 Sep 2009 06:39:13 +0000 (+1000) Subject: r300g: fix texture pitch to correct value. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=07183b73ebafe2d1083f1c572978317768725b99;p=mesa.git r300g: fix texture pitch to correct value. pitch is pixels - 1, not bytes. --- diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index 7c041d17f71..e8078ea9f13 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -37,7 +37,7 @@ static void r300_setup_texture_state(struct r300_texture* tex, /* XXX */ state->format1 = r300_translate_texformat(tex->tex.format); - state->format2 = r300_texture_get_stride(tex, 0); + state->format2 = (r300_texture_get_stride(tex, 0) / tex->tex.block.size) - 1; /* Assume (somewhat foolishly) that oversized textures will * not be permitted by the state tracker. */