Lines Matching refs:row
1418 u32 row, col; in TCPackTile_I4() local
1435 for(row=0; row<realRows; row++) in TCPackTile_I4()
1437 tilePtr = dstPtr + (row * 4); // move 4 bytes (8 4-bit texels) per row in TCPackTile_I4()
1443 TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_I4()
1519 u32 row, col; in TCPackTile_I8() local
1536 for(row=0; row<realRows; row++) in TCPackTile_I8()
1538 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_I8()
1543 …TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); // fetch an 8-bit intensity value… in TCPackTile_I8()
1605 u32 row, col; in TCPackTile_IA4() local
1622 for(row=0; row<realRows; row++) in TCPackTile_IA4()
1624 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_IA4()
1631 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_IA4()
1638 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_IA4()
1704 u32 row, col; in TCPackTile_IA8() local
1721 for(row=0; row<realRows; row++) in TCPackTile_IA8()
1723 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_IA8()
1730 TCGetLayerValue( alphaLayer, (x+col), (y+row), &ria, 0, 0 ); in TCPackTile_IA8()
1739 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_IA8()
1799 u32 row, col; in TCPackTile_R5G6B5() local
1817 for(row=0; row<realRows; row++) in TCPackTile_R5G6B5()
1819 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_R5G6B5()
1823 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_R5G6B5()
1878 u32 row, col; in TCPackTile_RGB5A3() local
1897 for(row=0; row<realRows; row++) in TCPackTile_RGB5A3()
1899 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_RGB5A3()
1906 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_RGB5A3()
1913 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_RGB5A3()
1991 u32 row, col; in TCPackTile_RGBA8() local
2009 for(row=0; row<realRows; row++) in TCPackTile_RGBA8()
2012 arPtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_RGBA8()
2013 gbPtr = dstPtr + 32 + (row * 8); // need to reset ptr each row to account for in TCPackTile_RGBA8()
2018 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_RGBA8()
2022 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_RGBA8()
2089 u32 row, col; in TCPackTile_CI4() local
2106 for(row=0; row<realRows; row++) in TCPackTile_CI4()
2108 tilePtr = dstPtr + (row * 4); // move 4 bytes (8 4-bit texels) per row in TCPackTile_CI4()
2113 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color-index value in TCPackTile_CI4()
2174 u32 row, col; in TCPackTile_CI8() local
2191 for(row=0; row<realRows; row++) in TCPackTile_CI8()
2193 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_CI8()
2198 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color index value in TCPackTile_CI8()
2255 u32 row, col; in TCPackTile_CI14_X2() local
2272 for(row=0; row<realRows; row++) in TCPackTile_CI14_X2()
2274 tilePtr = (u16*)( (u8*)dstPtr + (row * 8) ); // move 8 bytes (4 16-bit texels) per row in TCPackTile_CI14_X2()
2279 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, 0, 0 ); in TCPackTile_CI14_X2()