Lines Matching refs:src_width
76 static void rotate90_argb8888(const uint32_t * src, uint32_t * dst, int32_t src_width, int32_t src_…
81 static void rotate270_argb8888(const uint32_t * src, uint32_t * dst, int32_t src_width, int32_t src…
86 static void rotate90_rgb888(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_heig…
95 static void rotate90_rgb565(const uint16_t * src, uint16_t * dst, int32_t src_width, int32_t src_he…
100 static void rotate270_rgb565(const uint16_t * src, uint16_t * dst, int32_t src_width, int32_t src_h…
107 static void rotate90_l8(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_height,
112 static void rotate270_l8(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_height,
243 void lv_draw_sw_rotate(const void * src, void * dest, int32_t src_width, int32_t src_height, int32_… in lv_draw_sw_rotate() argument
250 rotate90_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
255 rotate90_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
260 rotate90_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
266 rotate90_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
280 rotate180_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
285 rotate180_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
290 rotate180_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
296 rotate180_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
310 rotate270_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
315 rotate270_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
320 rotate270_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
326 rotate270_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
343 static void rotate270_argb8888(const uint32_t * src, uint32_t * dst, int32_t src_width, int32_t src… in rotate270_argb8888() argument
347 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_ARGB8888(src, dst, src_width, src_height, src_stride, dst_s… in rotate270_argb8888()
354 for(int32_t x = 0; x < src_width; ++x) { in rotate270_argb8888()
368 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_ARGB8888(src, dst, src_width, src_height, src_stride, dst_… in rotate180_argb8888()
384 static void rotate90_argb8888(const uint32_t * src, uint32_t * dst, int32_t src_width, int32_t src_… in rotate90_argb8888() argument
387 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_ARGB8888(src, dst, src_width, src_height, src_stride, dst_… in rotate90_argb8888()
394 for(int32_t x = 0; x < src_width; ++x) { in rotate90_argb8888()
395 int32_t dstIndex = (src_width - x - 1); in rotate90_argb8888()
408 static void rotate90_rgb888(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_heig… in rotate90_rgb888() argument
412 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_RGB888(src, dst, src_width, src_height, src_stride, dst_str… in rotate90_rgb888()
416 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb888()
419 int32_t dstIndex = (src_width - x - 1) * dst_stride + y * 3; in rotate90_rgb888()
430 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_RGB888(src, dst, src_width, src_height, src_stride, dst_st… in rotate180_rgb888()
448 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_RGB888(src, dst, src_width, src_height, src_stride, dst_st… in rotate270_rgb888()
467 static void rotate270_rgb565(const uint16_t * src, uint16_t * dst, int32_t src_width, int32_t src_h… in rotate270_rgb565() argument
471 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_RGB565(src, dst, src_width, src_height, src_stride, dst_str… in rotate270_rgb565()
478 for(int32_t x = 0; x < src_width; ++x) { in rotate270_rgb565()
507 static void rotate90_rgb565(const uint16_t * src, uint16_t * dst, int32_t src_width, int32_t src_he… in rotate90_rgb565() argument
511 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_RGB565(src, dst, src_width, src_height, src_stride, dst_st… in rotate90_rgb565()
518 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb565()
519 int32_t dstIndex = (src_width - x - 1); in rotate90_rgb565()
533 static void rotate90_l8(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_height, in rotate90_l8() argument
537 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_L8(src, dst, src_width, src_height, src_stride, dst_stride… in rotate90_l8()
541 for(int32_t x = 0; x < src_width; ++x) { in rotate90_l8()
542 int32_t dstIndex = (src_width - x - 1); in rotate90_l8()
567 static void rotate270_l8(const uint8_t * src, uint8_t * dst, int32_t src_width, int32_t src_height, in rotate270_l8() argument
571 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_L8(src, dst, src_width, src_height, src_stride, dst_stride)… in rotate270_l8()
575 for(int32_t x = 0; x < src_width; ++x) { in rotate270_l8()