1 /**
2  * @file lv_draw_sw_blend_to_rgb888.h
3  *
4  */
5 
6 #ifndef LV_DRAW_SW_BLEND_TO_RGB888_H
7 #define LV_DRAW_SW_BLEND_TO_RGB888_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "../lv_draw_sw.h"
17 #if LV_USE_DRAW_SW
18 
19 /*********************
20  *      DEFINES
21  *********************/
22 
23 /**********************
24  *      TYPEDEFS
25  **********************/
26 
27 /**********************
28  * GLOBAL PROTOTYPES
29  **********************/
30 
31 void /* LV_ATTRIBUTE_FAST_MEM */ lv_draw_sw_blend_color_to_rgb888(lv_draw_sw_blend_fill_dsc_t * dsc,
32                                                                   uint32_t dest_px_size);
33 
34 void /* LV_ATTRIBUTE_FAST_MEM */ lv_draw_sw_blend_image_to_rgb888(lv_draw_sw_blend_image_dsc_t * dsc,
35                                                                   uint32_t dest_px_size);
36 
37 /**********************
38  *      MACROS
39  **********************/
40 
41 #endif /*LV_USE_DRAW_SW*/
42 
43 #ifdef __cplusplus
44 } /*extern "C"*/
45 #endif
46 
47 #endif /*LV_DRAW_SW_BLEND_TO_RGB888_H*/
48