Lines Matching refs:srcLayer

275 static void TCPackTile_I4	   ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
276 static void TCPackTile_I8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
287 static void TCPackTile_CI4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
288 static void TCPackTile_CI8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
1414 static void TCPackTile_I4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_I4() argument
1425 realRows = srcLayer->height - y; in TCPackTile_I4()
1426 realCols = srcLayer->width - x; in TCPackTile_I4()
1443 TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_I4()
1447 if( srcLayer->type == LY_IMAGE_COLOR_RGB24 ) in TCPackTile_I4()
1451 else if( srcLayer->type == LY_IMAGE_COLOR_CI16 ) in TCPackTile_I4()
1515 static void TCPackTile_I8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_I8() argument
1526 realRows = srcLayer->height - y; in TCPackTile_I8()
1527 realCols = srcLayer->width - x; in TCPackTile_I8()
1543 …TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); // fetch an 8-bit intensity value… in TCPackTile_I8()
1547 if( srcLayer->type == LY_IMAGE_COLOR_RGB24 ) in TCPackTile_I8()
2086 static void TCPackTile_CI4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_CI4() argument
2096 realRows = srcLayer->height - y; in TCPackTile_CI4()
2097 realCols = srcLayer->width - x; in TCPackTile_CI4()
2113 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color-index value in TCPackTile_CI4()
2171 static void TCPackTile_CI8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_CI8() argument
2181 realRows = srcLayer->height - y; in TCPackTile_CI8()
2182 realCols = srcLayer->width - x; in TCPackTile_CI8()
2198 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color index value in TCPackTile_CI8()