Lines Matching refs:col
296 u32 row, col; in TCMakeImColorLayer() local
315 for( col = 0; col < newLy->width; col++ ) in TCMakeImColorLayer()
317 TCGetLayerValue(dfPtr->lyColor, col, row, &r, &g, &b); in TCMakeImColorLayer()
318 TCSetLayerValue(newLy, col, row, r, g, b); in TCMakeImColorLayer()
326 u32 row, col; in TCMakeImAlphaLayer() local
344 for( col = 0; col < newLy->width; col++ ) in TCMakeImAlphaLayer()
346 TCGetLayerValue(dfPtr->lyAlpha, col, row, &a, NULL, NULL); in TCMakeImAlphaLayer()
347 TCSetLayerValue(newLy, col, row, a, NULL, NULL); in TCMakeImAlphaLayer()
360 u32 row, col; in TCConvertCI_To_RGB() local
378 for( col = 0; col < imPtr->lyColor.width; col++ ) in TCConvertCI_To_RGB()
381 TCGetLayerValue( &imPtr->lyColor, col, row, &index, NULL, NULL ); in TCConvertCI_To_RGB()
386 TCSetLayerValue( &lyColor, col, row, (u16)r, g, b ); in TCConvertCI_To_RGB()