Lines Matching refs:blend_dsc
57 lv_draw_sw_blend_dsc_t blend_dsc; in lv_draw_sw_img_decoded() local
59 lv_memset_00(&blend_dsc, sizeof(lv_draw_sw_blend_dsc_t)); in lv_draw_sw_img_decoded()
60 blend_dsc.opa = draw_dsc->opa; in lv_draw_sw_img_decoded()
61 blend_dsc.blend_mode = draw_dsc->blend_mode; in lv_draw_sw_img_decoded()
62 blend_dsc.blend_area = &blend_area; in lv_draw_sw_img_decoded()
66 blend_dsc.src_buf = (const lv_color_t *)src_buf; in lv_draw_sw_img_decoded()
68 blend_dsc.blend_area = coords; in lv_draw_sw_img_decoded()
69 lv_draw_sw_blend(draw_ctx, &blend_dsc); in lv_draw_sw_img_decoded()
75 blend_dsc.mask_buf = (lv_opa_t *)src_buf; in lv_draw_sw_img_decoded()
76 blend_dsc.mask_area = coords; in lv_draw_sw_img_decoded()
77 blend_dsc.src_buf = NULL; in lv_draw_sw_img_decoded()
78 blend_dsc.color = draw_dsc->recolor; in lv_draw_sw_img_decoded()
79 blend_dsc.mask_res = LV_DRAW_MASK_RES_CHANGED; in lv_draw_sw_img_decoded()
81 blend_dsc.blend_area = coords; in lv_draw_sw_img_decoded()
82 lv_draw_sw_blend(draw_ctx, &blend_dsc); in lv_draw_sw_img_decoded()
88 blend_dsc.src_buf = (const lv_color_t *)src_buf; in lv_draw_sw_img_decoded()
89 blend_dsc.mask_buf = (lv_opa_t *)src_buf; in lv_draw_sw_img_decoded()
90 blend_dsc.mask_buf += sizeof(lv_color_t) * src_w * src_h; in lv_draw_sw_img_decoded()
91 blend_dsc.blend_area = coords; in lv_draw_sw_img_decoded()
92 blend_dsc.mask_area = coords; in lv_draw_sw_img_decoded()
93 blend_dsc.mask_res = LV_DRAW_MASK_RES_CHANGED; in lv_draw_sw_img_decoded()
94 lv_draw_sw_blend(draw_ctx, &blend_dsc); in lv_draw_sw_img_decoded()
126 blend_dsc.mask_buf = mask_buf; in lv_draw_sw_img_decoded()
127 blend_dsc.mask_area = &blend_area; in lv_draw_sw_img_decoded()
128 blend_dsc.mask_res = LV_DRAW_MASK_RES_CHANGED; in lv_draw_sw_img_decoded()
129 blend_dsc.src_buf = rgb_buf; in lv_draw_sw_img_decoded()
136 blend_dsc.mask_res = mask_res_def; in lv_draw_sw_img_decoded()
174 blend_dsc.mask_res = LV_DRAW_MASK_RES_CHANGED; in lv_draw_sw_img_decoded()
177 blend_dsc.mask_res = LV_DRAW_MASK_RES_CHANGED; in lv_draw_sw_img_decoded()
185 lv_draw_sw_blend(draw_ctx, &blend_dsc); in lv_draw_sw_img_decoded()