Lines Matching refs:srcLayer
270 static void TCPackTile_I4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
271 static void TCPackTile_I8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
282 static void TCPackTile_CI4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
283 static void TCPackTile_CI8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr );
1409 static void TCPackTile_I4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_I4() argument
1420 realRows = srcLayer->height - y; in TCPackTile_I4()
1421 realCols = srcLayer->width - x; in TCPackTile_I4()
1438 TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_I4()
1442 if( srcLayer->type == LY_IMAGE_COLOR_RGB24 ) in TCPackTile_I4()
1446 else if( srcLayer->type == LY_IMAGE_COLOR_CI16 ) in TCPackTile_I4()
1510 static void TCPackTile_I8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_I8() argument
1521 realRows = srcLayer->height - y; in TCPackTile_I8()
1522 realCols = srcLayer->width - x; in TCPackTile_I8()
1538 …TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); // fetch an 8-bit intensity value… in TCPackTile_I8()
1542 if( srcLayer->type == LY_IMAGE_COLOR_RGB24 ) in TCPackTile_I8()
2081 static void TCPackTile_CI4 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_CI4() argument
2091 realRows = srcLayer->height - y; in TCPackTile_CI4()
2092 realCols = srcLayer->width - x; in TCPackTile_CI4()
2108 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color-index value in TCPackTile_CI4()
2166 static void TCPackTile_CI8 ( TCLayer* srcLayer, u32 x, u32 y, u8* dstPtr ) in TCPackTile_CI8() argument
2176 realRows = srcLayer->height - y; in TCPackTile_CI8()
2177 realCols = srcLayer->width - x; in TCPackTile_CI8()
2193 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color index value in TCPackTile_CI8()