Searched refs:srcIndex (Results 1 – 1 of 1) sorted by relevance
356 int32_t srcIndex = x; in rotate270_argb8888() local358 dst[dstIndex + (src_height - y - 1)] = src[srcIndex]; in rotate270_argb8888()359 srcIndex += src_stride; in rotate270_argb8888()377 int32_t srcIndex = y * src_stride; in rotate180_argb8888() local379 dst[dstIndex + width - x - 1] = src[srcIndex + x]; in rotate180_argb8888()396 int32_t srcIndex = x; in rotate90_argb8888() local398 dst[dstIndex * dst_stride + y] = src[srcIndex]; in rotate90_argb8888()399 srcIndex += src_stride; in rotate90_argb8888()418 int32_t srcIndex = y * src_stride + x * 3; in rotate90_rgb888() local420 dst[dstIndex] = src[srcIndex]; /*Red*/ in rotate90_rgb888()[all …]