Searched refs:blending_mode (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_transitions.h | 65 uint32_t blending_mode, float step, int width, int height); 79 uint32_t blending_mode, float step, int width); 92 uint32_t blending_mode, float step, int height); 106 uint32_t blending_mode, float step, int width, int height); 120 uint32_t blending_mode, float step, int width, int height); 134 uint32_t blending_mode, float step, int width, int height); 148 uint32_t blending_mode, float step, int width, int height); 190 uint32_t blending_mode, float step, int width, int height); 204 uint32_t blending_mode, float step, int width, int height);
|
D | nema_blender.h | 105 void nema_set_blend(uint32_t blending_mode, nema_tex_t dst_tex, nema_tex_t fg_tex, nema_tex_t bg_te… 112 static inline void nema_set_blend_fill(uint32_t blending_mode) { in nema_set_blend_fill() argument 113 nema_set_blend(blending_mode, NEMA_TEX0, NEMA_NOTEX, NEMA_NOTEX); in nema_set_blend_fill() 121 static inline void nema_set_blend_fill_compose(uint32_t blending_mode) { in nema_set_blend_fill_compose() argument 122 nema_set_blend(blending_mode, NEMA_TEX0, NEMA_NOTEX, NEMA_TEX2); in nema_set_blend_fill_compose() 130 static inline void nema_set_blend_blit(uint32_t blending_mode) { in nema_set_blend_blit() argument 131 nema_set_blend(blending_mode, NEMA_TEX0, NEMA_TEX1, NEMA_NOTEX); in nema_set_blend_blit() 139 static inline void nema_set_blend_blit_compose(uint32_t blending_mode) { in nema_set_blend_blit_compose() argument 140 nema_set_blend(blending_mode, NEMA_TEX0, NEMA_TEX1, NEMA_TEX2); in nema_set_blend_blit_compose()
|
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_utils.c | 93 uint32_t blending_mode; in lv_nemagfx_blending_mode() local 96 blending_mode = NEMA_BL_SIMPLE; in lv_nemagfx_blending_mode() 99 blending_mode = NEMA_BL_ADD; in lv_nemagfx_blending_mode() 102 … blending_mode = nema_blending_mode(NEMA_BF_DESTCOLOR, NEMA_BF_INVSRCALPHA, NEMA_BLOP_SRC_PREMULT); in lv_nemagfx_blending_mode() 105 blending_mode = NEMA_BL_SIMPLE; in lv_nemagfx_blending_mode() 108 return blending_mode; in lv_nemagfx_blending_mode()
|
D | lv_draw_nema_gfx_img.c | 137 uint32_t blending_mode = lv_nemagfx_blending_mode(dsc->blend_mode); in _draw_nema_gfx_img() local 143 blending_mode |= NEMA_BLOP_SRC_PREMULT; in _draw_nema_gfx_img() 164 blending_mode |= NEMA_BLOP_RECOLOR; in _draw_nema_gfx_img() 172 blending_mode |= NEMA_BLOP_MODULATE_A; in _draw_nema_gfx_img() 177 blending_mode |= NEMA_BLOP_STENCIL_TXTY; in _draw_nema_gfx_img() 197 nema_set_blend_blit(blending_mode); in _draw_nema_gfx_img()
|