From: Brian Date: Tue, 1 Apr 2008 20:52:04 +0000 (-0600) Subject: cell: fix bug in texture tiling function (non-square textures work now) X-Git-Tag: 062012170305~17580^2~390^2~2009 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d02ee85093d8068f11ecb286c5f02f52786cd95;p=profile%2Fivi%2Fmesa.git cell: fix bug in texture tiling function (non-square textures work now) --- diff --git a/src/gallium/drivers/cell/ppu/cell_texture.c b/src/gallium/drivers/cell/ppu/cell_texture.c index c59d1f7..07717da 100644 --- a/src/gallium/drivers/cell/ppu/cell_texture.c +++ b/src/gallium/drivers/cell/ppu/cell_texture.c @@ -186,15 +186,17 @@ tile_copy_data(uint w, uint h, uint tile_size, uint *dst, const uint *src) uint it, jt; /* tile counters */ uint i, j; /* intra-tile counters */ + /* loop over dest tiles */ for (it = 0; it < h_t; it++) { for (jt = 0; jt < w_t; jt++) { - /* fill in tile (i, j) */ + /* start of dest tile: */ uint *tdst = dst + (it * w_t + jt) * tile_size2; + /* loop over texels in the tile */ for (i = 0; i < tile_size; i++) { for (j = 0; j < tile_size; j++) { const uint srci = it * tile_size + i; const uint srcj = jt * tile_size + j; - *tdst++ = src[srci * h + srcj]; + *tdst++ = src[srci * w + srcj]; } } }