merged evas image masking code from brett
[framework/uifw/evas.git] / src / lib / engines / common / evas_scale_smooth_scaler_noscale.c
1 {
2    DATA32 *ptr;
3    RGBA_Gfx_Func func;
4    RGBA_Image *maskobj;
5    DATA8 *mask = NULL;
6 #ifdef EVAS_SLI
7    int ysli = dst_clip_y;
8 #endif
9
10    ptr = src->image.data + ((dst_clip_y - dst_region_y + src_region_y) * src_w) + (dst_clip_x - dst_region_x) + src_region_x;
11    if (dc->mask.mask)
12      {
13         func = evas_common_gfx_func_composite_pixel_mask_span_get(NULL, NULL, dst_clip_w, dc->render_op);
14         maskobj = dc->mask.mask;
15         mask = maskobj->mask.mask;
16      }
17    else if (dc->mul.use)
18         func = evas_common_gfx_func_composite_pixel_color_span_get(src, dc->mul.col, dst, dst_clip_w, dc->render_op);
19    else
20         func = evas_common_gfx_func_composite_pixel_span_get(src, dst, dst_clip_w, dc->render_op);
21
22    if (mask)
23      {
24         mask += dst_clip_x - dc->mask.x;
25         mask += (dst_clip_y - dc->mask.y) * maskobj->cache_entry.w;
26         while (dst_clip_h--)
27           {
28
29 #ifdef EVAS_SLI
30              if (((ysli) % dc->sli.h) == dc->sli.y)
31 #endif
32                {
33                   func(ptr, mask, dc->mul.col, dst_ptr, dst_clip_w);
34                }
35 #ifdef EVAS_SLI
36              ysli++;
37 #endif
38              ptr += src_w;
39              dst_ptr += dst_w;
40              mask += maskobj->cache_entry.w;
41           }
42      }
43    else
44      {
45         while (dst_clip_h--)
46           {
47 #ifdef EVAS_SLI
48              if (((ysli) % dc->sli.h) == dc->sli.y)
49 #endif
50                {
51                   func(ptr, NULL, dc->mul.col, dst_ptr, dst_clip_w);
52                }
53 #ifdef EVAS_SLI
54              ysli++;
55 #endif
56              ptr += src_w;
57              dst_ptr += dst_w;
58           }
59      }
60 }
61
62 /* vim:set ts=8 sw=3 sts=3 expandtab cino=>5n-2f0^-2{2(0W1st0 :*/