Rollback to previous package. evas_1.0.0.001+svn.62695slp2+build31
[framework/uifw/evas.git] / src / modules / engines / software_generic / evas_engine.c
1 #include "evas_common.h" /* Also includes international specific stuff */
2 #include "evas_private.h"
3
4 /*
5  *****
6  **
7  ** ENGINE ROUTINES
8  **
9  *****
10  */
11 static int cpunum = 0;
12 static int _evas_soft_gen_log_dom = -1;
13
14 static void
15 eng_output_dump(void *data __UNUSED__)
16 {
17    evas_common_image_image_all_unload();
18    evas_common_font_font_all_unload();
19 }
20
21 static void *
22 eng_context_new(void *data __UNUSED__)
23 {
24    return evas_common_draw_context_new();
25 }
26
27 static void
28 eng_context_free(void *data __UNUSED__, void *context)
29 {
30    evas_common_draw_context_free(context);
31 }
32
33 static void
34 eng_context_clip_set(void *data __UNUSED__, void *context, int x, int y, int w, int h)
35 {
36    evas_common_draw_context_set_clip(context, x, y, w, h);
37 }
38
39 static void
40 eng_context_clip_clip(void *data __UNUSED__, void *context, int x, int y, int w, int h)
41 {
42    evas_common_draw_context_clip_clip(context, x, y, w, h);
43 }
44
45 static void
46 eng_context_clip_unset(void *data __UNUSED__, void *context)
47 {
48    evas_common_draw_context_unset_clip(context);
49 }
50
51 static int
52 eng_context_clip_get(void *data __UNUSED__, void *context, int *x, int *y, int *w, int *h)
53 {
54    *x = ((RGBA_Draw_Context *)context)->clip.x;
55    *y = ((RGBA_Draw_Context *)context)->clip.y;
56    *w = ((RGBA_Draw_Context *)context)->clip.w;
57    *h = ((RGBA_Draw_Context *)context)->clip.h;
58    return ((RGBA_Draw_Context *)context)->clip.use;
59 }
60
61 static void
62 eng_context_color_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
63 {
64    evas_common_draw_context_set_color(context, r, g, b, a);
65 }
66
67 static int
68 eng_context_color_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
69 {
70    *r = (int)(R_VAL(&((RGBA_Draw_Context *)context)->col.col));
71    *g = (int)(G_VAL(&((RGBA_Draw_Context *)context)->col.col));
72    *b = (int)(B_VAL(&((RGBA_Draw_Context *)context)->col.col));
73    *a = (int)(A_VAL(&((RGBA_Draw_Context *)context)->col.col));
74    return 1;
75 }
76
77 static void
78 eng_context_multiplier_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
79 {
80    evas_common_draw_context_set_multiplier(context, r, g, b, a);
81 }
82
83 static void
84 eng_context_multiplier_unset(void *data __UNUSED__, void *context)
85 {
86    evas_common_draw_context_unset_multiplier(context);
87 }
88
89 static int
90 eng_context_multiplier_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
91 {
92    *r = (int)(R_VAL(&((RGBA_Draw_Context *)context)->mul.col));
93    *g = (int)(G_VAL(&((RGBA_Draw_Context *)context)->mul.col));
94    *b = (int)(B_VAL(&((RGBA_Draw_Context *)context)->mul.col));
95    *a = (int)(A_VAL(&((RGBA_Draw_Context *)context)->mul.col));
96    return ((RGBA_Draw_Context *)context)->mul.use;
97 }
98
99 static void
100 eng_context_mask_set(void *data __UNUSED__, void *context, void *mask, int x, int y, int w, int h)
101 {
102    evas_common_draw_context_set_mask(context, mask, x, y, w, h);
103 }
104
105 static void
106 eng_context_mask_unset(void *data __UNUSED__, void *context)
107 {
108    evas_common_draw_context_unset_mask(context);
109 }
110 /*
111 static void *
112 eng_context_mask_get(void *data __UNUSED__, void *context)
113 {
114    return ((RGBA_Draw_Context *)context)->mask.mask;
115 }
116 */
117
118 static void
119 eng_context_cutout_add(void *data __UNUSED__, void *context, int x, int y, int w, int h)
120 {
121    evas_common_draw_context_add_cutout(context, x, y, w, h);
122 }
123
124 static void
125 eng_context_cutout_clear(void *data __UNUSED__, void *context)
126 {
127    evas_common_draw_context_clear_cutouts(context);
128 }
129
130 static void
131 eng_context_anti_alias_set(void *data __UNUSED__, void *context, unsigned char aa)
132 {
133    evas_common_draw_context_set_anti_alias(context, aa);
134 }
135
136 static unsigned char
137 eng_context_anti_alias_get(void *data __UNUSED__, void *context)
138 {
139    return ((RGBA_Draw_Context *)context)->anti_alias;
140 }
141
142 static void
143 eng_context_color_interpolation_set(void *data __UNUSED__, void *context, int color_space)
144 {
145    evas_common_draw_context_set_color_interpolation(context, color_space);
146 }
147
148 static int
149 eng_context_color_interpolation_get(void *data __UNUSED__, void *context)
150 {
151    return ((RGBA_Draw_Context *)context)->interpolation.color_space;
152 }
153
154 static void
155 eng_context_render_op_set(void *data __UNUSED__, void *context, int op)
156 {
157    evas_common_draw_context_set_render_op(context, op);
158 }
159
160 static int
161 eng_context_render_op_get(void *data __UNUSED__, void *context)
162 {
163    return ((RGBA_Draw_Context *)context)->render_op;
164 }
165
166
167
168 static void
169 eng_rectangle_draw(void *data __UNUSED__, void *context, void *surface, int x, int y, int w, int h)
170 {
171 #ifdef BUILD_PIPE_RENDER
172    if ((cpunum > 1)
173 #ifdef EVAS_FRAME_QUEUING
174         && evas_common_frameq_enabled()
175 #endif
176         )
177      evas_common_pipe_rectangle_draw(surface, context, x, y, w, h);
178    else
179 #endif
180      {
181         evas_common_rectangle_draw(surface, context, x, y, w, h);
182         evas_common_cpu_end_opt();
183      }
184 }
185
186 static void
187 eng_line_draw(void *data __UNUSED__, void *context, void *surface, int x1, int y1, int x2, int y2)
188 {
189 #ifdef BUILD_PIPE_RENDER
190    if ((cpunum > 1)
191  #ifdef EVAS_FRAME_QUEUING
192         && evas_common_frameq_enabled()
193 #endif
194         )
195     evas_common_pipe_line_draw(surface, context, x1, y1, x2, y2);
196    else
197 #endif   
198      {
199         evas_common_line_draw(surface, context, x1, y1, x2, y2);
200         evas_common_cpu_end_opt();
201      }
202 }
203
204 static void *
205 eng_polygon_point_add(void *data __UNUSED__, void *context __UNUSED__, void *polygon, int x, int y)
206 {
207    return evas_common_polygon_point_add(polygon, x, y);
208 }
209
210 static void *
211 eng_polygon_points_clear(void *data __UNUSED__, void *context __UNUSED__, void *polygon)
212 {
213    return evas_common_polygon_points_clear(polygon);
214 }
215
216 static void
217 eng_polygon_draw(void *data __UNUSED__, void *context, void *surface, void *polygon, int x, int y)
218 {
219 #ifdef BUILD_PIPE_RENDER
220    if ((cpunum > 1)
221 #ifdef EVAS_FRAME_QUEUING
222         && evas_common_frameq_enabled()
223 #endif
224         )
225      evas_common_pipe_poly_draw(surface, context, polygon, x, y);
226    else
227 #endif
228      {
229         evas_common_polygon_draw(surface, context, polygon, x, y);
230         evas_common_cpu_end_opt();
231      }
232 }
233
234 static int
235 eng_image_alpha_get(void *data __UNUSED__, void *image)
236 {
237    Image_Entry *im;
238
239    if (!image) return 1;
240    im = image;
241    switch (im->space)
242      {
243       case EVAS_COLORSPACE_ARGB8888:
244         if (im->flags.alpha) return 1;
245       default:
246         break;
247      }
248    return 0;
249 }
250
251 static int
252 eng_image_colorspace_get(void *data __UNUSED__, void *image)
253 {
254    Image_Entry *im;
255
256    if (!image) return EVAS_COLORSPACE_ARGB8888;
257    im = image;
258    return im->space;
259 }
260
261 static void
262 eng_image_mask_create(void *data __UNUSED__, void *image)
263 {
264    RGBA_Image *im;
265    int sz;
266    uint8_t *dst,*end;
267    uint32_t *src;
268
269    if (!image) return;
270    im = image;
271    if (im->mask.mask && !im->mask.dirty) return;
272
273    if (im->mask.mask) free(im->mask.mask);
274    sz = im->cache_entry.w * im->cache_entry.h;
275    im->mask.mask = malloc(sz);
276    dst = im->mask.mask;
277    if (!im->image.data)
278       evas_cache_image_load_data(&im->cache_entry);
279    src = im->image.data;
280    if (!src) return;
281    for (end = dst + sz ; dst < end ; dst ++, src ++)
282       *dst = *src >> 24;
283    im->mask.dirty = 0;
284 }
285
286
287 static void *
288 eng_image_alpha_set(void *data __UNUSED__, void *image, int has_alpha)
289 {
290    RGBA_Image *im;
291
292    if (!image) return NULL;
293    im = image;
294    if (im->cache_entry.space != EVAS_COLORSPACE_ARGB8888)
295      {
296         im->cache_entry.flags.alpha = 0;
297         return im;
298      }
299    im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
300    evas_common_image_colorspace_dirty(im);
301
302    im->cache_entry.flags.alpha = has_alpha ? 1 : 0;
303    return im;
304 }
305
306 static void *
307 eng_image_border_set(void *data __UNUSED__, void *image, int l __UNUSED__, int r __UNUSED__, int t __UNUSED__, int b __UNUSED__)
308 {
309    RGBA_Image *im;
310
311    im = image;
312    return im;
313 }
314
315 static void
316 eng_image_border_get(void *data __UNUSED__, void *image, int *l __UNUSED__, int *r __UNUSED__, int *t __UNUSED__, int *b __UNUSED__)
317 {
318    RGBA_Image *im;
319
320    im = image;
321 }
322
323 static char *
324 eng_image_comment_get(void *data __UNUSED__, void *image, char *key __UNUSED__)
325 {
326    RGBA_Image *im;
327
328    if (!image) return NULL;
329    im = image;
330    return im->info.comment;
331 }
332
333 static char *
334 eng_image_format_get(void *data __UNUSED__, void *image __UNUSED__)
335 {
336    return NULL;
337 }
338
339 static void
340 eng_image_colorspace_set(void *data __UNUSED__, void *image, int cspace)
341 {
342    Image_Entry *im;
343
344    if (!image) return;
345    im = image;
346    evas_cache_image_colorspace(im, cspace);
347 }
348
349 static void *
350 eng_image_native_set(void *data __UNUSED__, void *image, void *native __UNUSED__)
351 {
352    return image;
353 }
354
355 static void *
356 eng_image_native_get(void *data __UNUSED__, void *image __UNUSED__)
357 {
358    return NULL;
359 }
360
361 static void *
362 eng_image_load(void *data __UNUSED__, const char *file, const char *key, int *error, Evas_Image_Load_Opts *lo)
363 {
364    *error = EVAS_LOAD_ERROR_NONE;
365    return evas_common_load_image_from_file(file, key, lo, error);
366 }
367
368 static void *
369 eng_image_new_from_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
370 {
371    return evas_cache_image_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
372 }
373
374 static void *
375 eng_image_new_from_copied_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
376 {
377    return evas_cache_image_copied_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
378 }
379
380 static void
381 eng_image_free(void *data __UNUSED__, void *image)
382 {
383    evas_cache_image_drop(image);
384 }
385
386 static void
387 eng_image_size_get(void *data __UNUSED__, void *image, int *w, int *h)
388 {
389    Image_Entry *im;
390
391    im = image;
392    if (w) *w = im->w;
393    if (h) *h = im->h;
394 }
395
396 static void *
397 eng_image_size_set(void *data __UNUSED__, void *image, int w, int h)
398 {
399    Image_Entry *im;
400
401    im = image;
402    return evas_cache_image_size_set(image, w, h);
403 }
404
405 static void *
406 eng_image_dirty_region(void *data __UNUSED__, void *image, int x, int y, int w, int h)
407 {
408    Image_Entry *im = image;
409
410    if (!image) return NULL;
411    return evas_cache_image_dirty(im, x, y, w, h);
412 }
413
414 static void *
415 eng_image_data_get(void *data __UNUSED__, void *image, int to_write, DATA32 **image_data, int *err)
416 {
417    RGBA_Image *im;
418    int error;
419
420    if (!image)
421      {
422         *image_data = NULL;
423         return NULL;
424      }
425    im = image;
426    error = evas_cache_image_load_data(&im->cache_entry);
427    switch (im->cache_entry.space)
428      {
429       case EVAS_COLORSPACE_ARGB8888:
430         if (to_write)
431           im = (RGBA_Image *)evas_cache_image_alone(&im->cache_entry);
432         *image_data = im->image.data;
433         break;
434       case EVAS_COLORSPACE_YCBCR422P601_PL:
435       case EVAS_COLORSPACE_YCBCR422P709_PL:
436       case EVAS_COLORSPACE_YCBCR422601_PL:
437         *image_data = im->cs.data;
438         break;
439       default:
440         abort();
441         break;
442      }
443    if (err) *err = error;
444    return im;
445 }
446
447 static void *
448 eng_image_data_put(void *data, void *image, DATA32 *image_data)
449 {
450    RGBA_Image *im, *im2;
451
452    if (!image) return NULL;
453    im = image;
454    switch (im->cache_entry.space)
455      {
456       case EVAS_COLORSPACE_ARGB8888:
457         if (image_data != im->image.data)
458           {
459              int w, h;
460
461              w = im->cache_entry.w;
462              h = im->cache_entry.h;
463              im2 = eng_image_new_from_data(data, w, h, image_data,
464                                            eng_image_alpha_get(data, image),
465                                            eng_image_colorspace_get(data, image));
466              evas_cache_image_drop(&im->cache_entry);
467              im = im2;
468           }
469         break;
470       case EVAS_COLORSPACE_YCBCR422P601_PL:
471       case EVAS_COLORSPACE_YCBCR422P709_PL:
472       case EVAS_COLORSPACE_YCBCR422601_PL:
473         if (image_data != im->cs.data)
474           {
475              if (im->cs.data)
476                {
477                   if (!im->cs.no_free) free(im->cs.data);
478                }
479              im->cs.data = image_data;
480              evas_common_image_colorspace_dirty(im);
481           }
482         break;
483       default:
484         abort();
485         break;
486      }
487    return im;
488 }
489
490 static void
491 eng_image_data_preload_request(void *data __UNUSED__, void *image, const void *target)
492 {
493    RGBA_Image *im = image;
494
495    if (!im) return ;
496    evas_cache_image_preload_data(&im->cache_entry, target);
497 }
498
499 static void
500 eng_image_data_preload_cancel(void *data __UNUSED__, void *image, const void *target)
501 {
502    RGBA_Image *im = image;
503
504    if (!im) return ;
505    evas_cache_image_preload_cancel(&im->cache_entry, target);
506 }
507
508 static void
509 eng_image_draw(void *data __UNUSED__, void *context, void *surface, void *image, int src_x, int src_y, int src_w, int src_h, int dst_x, int dst_y, int dst_w, int dst_h, int smooth)
510 {
511    RGBA_Image *im;
512
513    if (!image) return;
514    im = image;
515 #ifdef BUILD_PIPE_RENDER
516    if ((cpunum > 1)
517 #ifdef EVAS_FRAME_QUEUING
518         && evas_common_frameq_enabled()
519 #endif
520         )
521      {
522         evas_common_rgba_image_scalecache_prepare((Image_Entry *)(im), 
523                                                   surface, context, smooth,
524                                                   src_x, src_y, src_w, src_h,
525                                                   dst_x, dst_y, dst_w, dst_h);
526         
527         evas_common_pipe_image_draw(im, surface, context, smooth,
528                                     src_x, src_y, src_w, src_h,
529                                     dst_x, dst_y, dst_w, dst_h);
530      }
531    else
532 #endif
533      {
534 //        if (im->cache_entry.space == EVAS_COLORSPACE_ARGB8888)
535 //          evas_cache_image_load_data(&im->cache_entry);
536 //        evas_common_image_colorspace_normalize(im);
537         evas_common_rgba_image_scalecache_prepare(&im->cache_entry, surface, context, smooth,
538                                                   src_x, src_y, src_w, src_h,
539                                                   dst_x, dst_y, dst_w, dst_h);
540         evas_common_rgba_image_scalecache_do(&im->cache_entry, surface, context, smooth,
541                                              src_x, src_y, src_w, src_h,
542                                              dst_x, dst_y, dst_w, dst_h);
543 /*        
544         if (smooth)
545           evas_common_scale_rgba_in_to_out_clip_smooth(im, surface, context,
546                                                        src_x, src_y, src_w, src_h,
547                                                        dst_x, dst_y, dst_w, dst_h);
548         else
549           evas_common_scale_rgba_in_to_out_clip_sample(im, surface, context,
550                                                        src_x, src_y, src_w, src_h,
551                                                        dst_x, dst_y, dst_w, dst_h);
552  */
553         evas_common_cpu_end_opt();
554      }
555 }
556
557 static void
558 eng_image_map_draw(void *data __UNUSED__, void *context, void *surface, void *image, int npoints, RGBA_Map_Point *p, int smooth, int level)
559 {
560    RGBA_Image *im;
561
562    if (!image) return;
563    if (npoints < 3) return;
564    im = image;
565
566    if ((p[0].x == p[3].x) &&
567        (p[1].x == p[2].x) &&
568        (p[0].y == p[1].y) &&
569        (p[3].y == p[2].y) &&
570        (p[0].x <= p[1].x) &&
571        (p[0].y <= p[2].y) &&
572        (p[0].u == 0) &&
573        (p[0].v == 0) &&
574        (p[1].u == (int)(im->cache_entry.w << FP)) &&
575        (p[1].v == 0) &&
576        (p[2].u == (int)(im->cache_entry.w << FP)) &&
577        (p[2].v == (int)(im->cache_entry.h << FP)) &&
578        (p[3].u == 0) &&
579        (p[3].v == (int)(im->cache_entry.h << FP)) &&
580        (p[0].col == 0xffffffff) &&
581        (p[1].col == 0xffffffff) &&
582        (p[2].col == 0xffffffff) &&
583        (p[3].col == 0xffffffff))
584      {
585         int dx, dy, dw, dh;
586
587         dx = p[0].x >> FP;
588         dy = p[0].y >> FP;
589         dw = (p[2].x >> FP) - dx;
590         dh = (p[2].y >> FP) - dy;
591         eng_image_draw
592           (data, context, surface, image,
593            0, 0, im->cache_entry.w, im->cache_entry.h,
594            dx, dy, dw, dh, smooth);
595      }
596    else
597      {
598 #ifdef BUILD_PIPE_RENDER
599         if ((cpunum > 1)
600 # ifdef EVAS_FRAME_QUEUING
601        && evas_common_frameq_enabled()
602 # endif
603         )
604           evas_common_pipe_map_draw(im, surface, context, npoints, p, smooth, level);
605         else
606 #endif
607           evas_common_map_rgba(im, surface, context, npoints, p, smooth, level);
608      }
609    evas_common_cpu_end_opt();
610
611    if (npoints > 4)
612      {
613         eng_image_map_draw(data, context, surface, image, npoints - 2, p + 2,
614                            smooth, level);
615      }
616 }
617
618 static void *
619 eng_image_map_surface_new(void *data __UNUSED__, int w, int h, int alpha)
620 {
621    void *surface;
622    DATA32 *pixels;
623    surface = evas_cache_image_copied_data(evas_common_image_cache_get(), 
624                                           w, h, NULL, alpha, 
625                                           EVAS_COLORSPACE_ARGB8888);
626    pixels = evas_cache_image_pixels(surface);
627    return surface;
628 }
629
630 static void
631 eng_image_map_surface_free(void *data __UNUSED__, void *surface)
632 {
633    evas_cache_image_drop(surface);
634 }
635
636 static void
637 eng_image_scale_hint_set(void *data __UNUSED__, void *image, int hint)
638 {
639    Image_Entry *im;
640
641    if (!image) return;
642    im = image;
643    im->scale_hint = hint;
644 }
645
646 static int
647 eng_image_scale_hint_get(void *data __UNUSED__, void *image)
648 {
649    Image_Entry *im;
650
651    if (!image) return EVAS_IMAGE_SCALE_HINT_NONE;
652    im = image;
653    return im->scale_hint;
654 }
655
656 static Eina_Bool
657 eng_image_animated_get(void *data __UNUSED__, void *image)
658 {
659    Image_Entry *im;
660
661    if (!image) return EINA_FALSE;
662    im = image;
663    return im->flags.animated;
664 }
665
666 static int
667 eng_image_animated_frame_count_get(void *data __UNUSED__, void *image)
668 {
669    Image_Entry *im;
670
671    if (!image) return -1;
672    im = image;
673    if (!im->flags.animated) return -1;
674    return im->frame_count;
675 }
676
677 static Evas_Image_Animated_Loop_Hint
678 eng_image_animated_loop_type_get(void *data __UNUSED__, void *image)
679 {
680    Image_Entry *im;
681
682    if (!image) return EVAS_IMAGE_ANIMATED_HINT_NONE;
683    im = image;
684    if (!im->flags.animated) return EVAS_IMAGE_ANIMATED_HINT_NONE;
685    return im->loop_hint;
686 }
687
688 static int
689 eng_image_animated_loop_count_get(void *data __UNUSED__, void *image)
690 {
691    Image_Entry *im;
692
693    if (!image) return -1;
694    im = image;
695    if (!im->flags.animated) return -1;
696    return im->loop_count;
697 }
698
699 static double
700 eng_image_animated_frame_duration_get(void *data __UNUSED__, void *image, int start_frame, int frame_num)
701 {
702    Image_Entry *im;
703
704    if (!image) return -1;
705    im = image;
706    if (!im->flags.animated) return -1;
707    return evas_common_load_rgba_image_frame_duration_from_file(im, start_frame, frame_num);
708 }
709
710 static Eina_Bool
711 eng_image_animated_frame_set(void *data __UNUSED__, void *image, int frame_index)
712 {
713    Image_Entry *im;
714
715    if (!image) return EINA_FALSE;
716    im = image;
717    if (!im->flags.animated) return EINA_FALSE;
718    if (im->cur_frame == frame_index) return EINA_FALSE;
719    im->cur_frame = frame_index;
720    return EINA_TRUE;
721 }
722
723 static void
724 eng_image_cache_flush(void *data __UNUSED__)
725 {
726    int tmp_size;
727
728    tmp_size = evas_common_image_get_cache();
729    evas_common_image_set_cache(0);
730    evas_common_rgba_image_scalecache_flush();
731    evas_common_image_set_cache(tmp_size);
732 }
733
734 static void
735 eng_image_cache_set(void *data __UNUSED__, int bytes)
736 {
737    evas_common_image_set_cache(bytes);
738    evas_common_rgba_image_scalecache_size_set(bytes);
739 }
740
741 static int
742 eng_image_cache_get(void *data __UNUSED__)
743 {
744    return evas_common_image_get_cache();
745 }
746
747 static Evas_Font_Set *
748 eng_font_load(void *data __UNUSED__, const char *name, int size,
749       Font_Rend_Flags wanted_rend)
750 {
751    return (Evas_Font_Set *) evas_common_font_load(name, size, wanted_rend);
752 }
753
754 static Evas_Font_Set *
755 eng_font_memory_load(void *data __UNUSED__, char *name, int size, const void *fdata, int fdata_size, Font_Rend_Flags wanted_rend)
756 {
757    return (Evas_Font_Set *) evas_common_font_memory_load(name, size, fdata,
758          fdata_size, wanted_rend);
759 }
760
761 static Evas_Font_Set *
762 eng_font_add(void *data __UNUSED__, Evas_Font_Set *font, const char *name, int size, Font_Rend_Flags wanted_rend)
763 {
764    return (Evas_Font_Set *) evas_common_font_add((RGBA_Font *) font, name,
765          size, wanted_rend);
766 }
767
768 static Evas_Font_Set *
769 eng_font_memory_add(void *data __UNUSED__, Evas_Font_Set *font, char *name, int size, const void *fdata, int fdata_size, Font_Rend_Flags wanted_rend)
770 {
771    return (Evas_Font_Set *) evas_common_font_memory_add((RGBA_Font *) font,
772          name, size, fdata, fdata_size, wanted_rend);
773 }
774
775 static void
776 eng_font_free(void *data __UNUSED__, Evas_Font_Set *font)
777 {
778    evas_common_font_free((RGBA_Font *) font);
779 }
780
781 static int
782 eng_font_ascent_get(void *data __UNUSED__, Evas_Font_Set *font)
783 {
784    return evas_common_font_ascent_get((RGBA_Font *) font);
785 }
786
787 static int
788 eng_font_descent_get(void *data __UNUSED__, Evas_Font_Set *font)
789 {
790    return evas_common_font_descent_get((RGBA_Font *) font);
791 }
792
793 static int
794 eng_font_max_ascent_get(void *data __UNUSED__, Evas_Font_Set *font)
795 {
796    return evas_common_font_max_ascent_get((RGBA_Font *) font);
797 }
798
799 static int
800 eng_font_max_descent_get(void *data __UNUSED__, Evas_Font_Set *font)
801 {
802    return evas_common_font_max_descent_get((RGBA_Font *) font);
803 }
804
805 static void
806 eng_font_string_size_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int *w, int *h)
807 {
808    evas_common_font_query_size((RGBA_Font *) font, text_props, w, h);
809 }
810
811 static int
812 eng_font_inset_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
813 {
814    return evas_common_font_query_inset((RGBA_Font *) font, text_props);
815 }
816
817 static int
818 eng_font_right_inset_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
819 {
820    return evas_common_font_query_right_inset((RGBA_Font *) font, text_props);
821 }
822
823 static int
824 eng_font_h_advance_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
825 {
826    int h, v;
827
828    evas_common_font_query_advance((RGBA_Font *) font, text_props, &h, &v);
829    return h;
830 }
831
832 static int
833 eng_font_v_advance_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
834 {
835    int h, v;
836
837    evas_common_font_query_advance((RGBA_Font *) font, text_props, &h, &v);
838    return v;
839 }
840
841 static int
842 eng_font_pen_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int pos, int *cpen_x, int *cy, int *cadv, int *ch)
843 {
844    return evas_common_font_query_pen_coords((RGBA_Font *) font, text_props, pos, cpen_x, cy, cadv, ch);
845 }
846
847 static Eina_Bool
848 eng_font_text_props_info_create(void *data __UNUSED__, Evas_Font_Instance *fi, const Eina_Unicode *text, Evas_Text_Props *text_props, const Evas_BiDi_Paragraph_Props *par_props, size_t par_pos, size_t len)
849 {
850    return evas_common_text_props_content_create((RGBA_Font_Int *) fi, text,
851          text_props, par_props, par_pos, len);
852 }
853
854 static int
855 eng_font_char_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int pos, int *cx, int *cy, int *cw, int *ch)
856 {
857    return evas_common_font_query_char_coords((RGBA_Font *) font, text_props, pos, cx, cy, cw, ch);
858 }
859
860 static int
861 eng_font_char_at_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int x, int y, int *cx, int *cy, int *cw, int *ch)
862 {
863    return evas_common_font_query_char_at_coords((RGBA_Font *) font, text_props, x, y, cx, cy, cw, ch);
864 }
865
866 static int
867 eng_font_last_up_to_pos(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int x, int y)
868 {
869    return evas_common_font_query_last_up_to_pos((RGBA_Font *) font, text_props, x, y);
870 }
871
872 static int
873 eng_font_run_font_end_get(void *data __UNUSED__, Evas_Font_Set *font, Evas_Font_Instance **script_fi, Evas_Font_Instance **cur_fi, Evas_Script_Type script, const Eina_Unicode *text, int run_len)
874 {
875    return evas_common_font_query_run_font_end_get((RGBA_Font *) font,
876          (RGBA_Font_Int **) script_fi, (RGBA_Font_Int **) cur_fi,
877          script, text, run_len);
878 }
879
880 static void
881 eng_font_draw(void *data __UNUSED__, void *context, void *surface, Evas_Font_Set *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const Evas_Text_Props *text_props)
882 {
883 #ifdef BUILD_PIPE_RENDER
884    if ((cpunum > 1)
885 #ifdef EVAS_FRAME_QUEUING
886         && evas_common_frameq_enabled()
887 #endif
888         )
889      evas_common_pipe_text_draw(surface, context, (RGBA_Font *) font, x, y,
890            text_props);
891    else
892 #endif   
893      {
894         evas_common_font_draw(surface, context, (RGBA_Font *) font, x, y,
895               text_props);
896         evas_common_cpu_end_opt();
897      }
898 }
899
900 static void
901 eng_font_cache_flush(void *data __UNUSED__)
902 {
903    int tmp_size;
904
905    tmp_size = evas_common_font_cache_get();
906    evas_common_font_cache_set(0);
907    evas_common_font_flush();
908    evas_common_font_cache_set(tmp_size);
909 }
910
911 static void
912 eng_font_cache_set(void *data __UNUSED__, int bytes)
913 {
914    evas_common_font_cache_set(bytes);
915 }
916
917 static int
918 eng_font_cache_get(void *data __UNUSED__)
919 {
920    return evas_common_font_cache_get();
921 }
922
923 static void
924 eng_font_hinting_set(void *data __UNUSED__, Evas_Font_Set *font, int hinting)
925 {
926    evas_common_font_hinting_set((RGBA_Font *) font, hinting);
927 }
928
929 static int
930 eng_font_hinting_can_hint(void *data __UNUSED__, int hinting)
931 {
932    return evas_common_hinting_available(hinting);
933 }
934
935 static Eina_Bool
936 eng_canvas_alpha_get(void *data __UNUSED__, void *info __UNUSED__)
937 {
938    return EINA_TRUE;
939 }
940
941
942 /* Filter API */
943 #if 0 // filtering disabled
944 static void
945 eng_image_draw_filtered(void *data __UNUSED__, void *context __UNUSED__,
946                         void *surface, void *image, Evas_Filter_Info *filter)
947 {
948    Evas_Software_Filter_Fn fn;
949    RGBA_Image *im = image;
950
951    fn = evas_filter_software_get(filter);
952    if (!fn) return;
953    if (im->cache_entry.cache) evas_cache_image_load_data(&im->cache_entry);
954    fn(filter, image, surface);
955    return;
956 }
957
958 static Filtered_Image *
959 eng_image_filtered_get(void *image, uint8_t *key, size_t keylen)
960 {
961    RGBA_Image *im = image;
962    Filtered_Image *fi;
963    Eina_List *l;
964
965    for (l = im->filtered ; l ; l = l->next)
966      {
967          fi = l->data;
968          if (fi->keylen != keylen) continue;
969          if (memcmp(key, fi->key, keylen) != 0) continue;
970          fi->ref ++;
971          return fi;
972      }
973
974    return NULL;
975 }
976
977 static Filtered_Image *
978 eng_image_filtered_save(void *image, void *fimage, uint8_t *key, size_t keylen)
979 {
980    RGBA_Image *im = image;
981    Filtered_Image *fi;
982    Eina_List *l;
983
984    for (l = im->filtered ; l ; l = l->next)
985      {
986         fi = l->data;
987         if (fi->keylen != keylen) continue;
988         if (memcmp(key, fi->key, keylen) == 0) continue;
989         evas_cache_image_drop((void *)fi->image);
990         fi->image = fimage;
991         return fi;
992      }
993
994    fi = calloc(1,sizeof(Filtered_Image));
995    if (!fi) return NULL;
996
997    fi->keylen = keylen;
998    fi->key = malloc(keylen);
999    memcpy(fi->key, key, keylen);
1000    fi->image = fimage;
1001    fi->ref = 1;
1002
1003    im->filtered = eina_list_prepend(im->filtered, fi);
1004
1005    return fi;
1006 }
1007
1008 static void
1009 eng_image_filtered_free(void *image, Filtered_Image *fi)
1010 {
1011    RGBA_Image *im = image;
1012
1013    fi->ref --;
1014    if (fi->ref) return;
1015
1016    free(fi->key);
1017    evas_cache_image_drop(&fi->image->cache_entry);
1018    fi->image = NULL;
1019
1020    im->filtered = eina_list_remove(im->filtered, fi);
1021 }
1022 #endif
1023
1024 static int
1025 eng_image_load_error_get(void *data __UNUSED__, void *image)
1026 {
1027    RGBA_Image *im;
1028    
1029    if (!image) return EVAS_LOAD_ERROR_NONE;
1030    im = image;
1031    return im->cache_entry.load_error;
1032 }
1033
1034 /*
1035  *****
1036  **
1037  ** ENGINE API
1038  **
1039  *****
1040  */
1041
1042 static Evas_Func func =
1043 {
1044    NULL,
1045      NULL,
1046      NULL,
1047      NULL,
1048      NULL,
1049      NULL,
1050      NULL,
1051      NULL,
1052      NULL,
1053      NULL,
1054      NULL,
1055      NULL,
1056      NULL,
1057      eng_output_dump,
1058      /* draw context virtual methods */
1059      eng_context_new,
1060      eng_canvas_alpha_get,
1061      eng_context_free,
1062      eng_context_clip_set,
1063      eng_context_clip_clip,
1064      eng_context_clip_unset,
1065      eng_context_clip_get,
1066      eng_context_mask_set,
1067      eng_context_mask_unset,
1068      eng_context_color_set,
1069      eng_context_color_get,
1070      eng_context_multiplier_set,
1071      eng_context_multiplier_unset,
1072      eng_context_multiplier_get,
1073      eng_context_cutout_add,
1074      eng_context_cutout_clear,
1075      eng_context_anti_alias_set,
1076      eng_context_anti_alias_get,
1077      eng_context_color_interpolation_set,
1078      eng_context_color_interpolation_get,
1079      eng_context_render_op_set,
1080      eng_context_render_op_get,
1081      /* rect draw funcs */
1082      eng_rectangle_draw,
1083      /* line draw funcs */
1084      eng_line_draw,
1085      /* polygon draw funcs */
1086      eng_polygon_point_add,
1087      eng_polygon_points_clear,
1088      eng_polygon_draw,
1089      /* image draw funcs */
1090      eng_image_load,
1091      eng_image_new_from_data,
1092      eng_image_new_from_copied_data,
1093      eng_image_free,
1094      eng_image_size_get,
1095      eng_image_size_set,
1096      NULL,
1097      eng_image_dirty_region,
1098      eng_image_data_get,
1099      eng_image_data_put,
1100      eng_image_data_preload_request,
1101      eng_image_data_preload_cancel,
1102      eng_image_alpha_set,
1103      eng_image_alpha_get,
1104      eng_image_border_set,
1105      eng_image_border_get,
1106      eng_image_draw,
1107      eng_image_comment_get,
1108      eng_image_format_get,
1109      eng_image_colorspace_set,
1110      eng_image_colorspace_get,
1111      eng_image_mask_create,
1112      eng_image_native_set,
1113      eng_image_native_get,
1114      /* image cache funcs */
1115      eng_image_cache_flush,
1116      eng_image_cache_set,
1117      eng_image_cache_get,
1118      /* font draw functions */
1119      eng_font_load,
1120      eng_font_memory_load,
1121      eng_font_add,
1122      eng_font_memory_add,
1123      eng_font_free,
1124      eng_font_ascent_get,
1125      eng_font_descent_get,
1126      eng_font_max_ascent_get,
1127      eng_font_max_descent_get,
1128      eng_font_string_size_get,
1129      eng_font_inset_get,
1130      eng_font_h_advance_get,
1131      eng_font_v_advance_get,
1132      eng_font_char_coords_get,
1133      eng_font_char_at_coords_get,
1134      eng_font_draw,
1135      /* font cache functions */
1136      eng_font_cache_flush,
1137      eng_font_cache_set,
1138      eng_font_cache_get,
1139      /* font hinting functions */
1140      eng_font_hinting_set,
1141      eng_font_hinting_can_hint,
1142      eng_image_scale_hint_set,
1143      eng_image_scale_hint_get,
1144      /* more font draw functions */
1145      eng_font_last_up_to_pos,
1146      eng_image_map_draw,
1147      eng_image_map_surface_new,
1148      eng_image_map_surface_free,
1149      NULL, // eng_image_content_hint_set - software doesn't use it
1150      NULL, // eng_image_content_hint_get - software doesn't use it
1151      eng_font_pen_coords_get,
1152      eng_font_text_props_info_create,
1153      eng_font_right_inset_get,
1154 #if 0 // filtering disabled
1155      eng_image_draw_filtered,
1156      eng_image_filtered_get,
1157      eng_image_filtered_save,
1158      eng_image_filtered_free,
1159 #endif   
1160      NULL, // FIXME: need software mesa for gl rendering <- gl_surface_create
1161      NULL, // FIXME: need software mesa for gl rendering <- gl_surface_destroy
1162      NULL, // FIXME: need software mesa for gl rendering <- gl_context_create
1163      NULL, // FIXME: need software mesa for gl rendering <- gl_context_destroy
1164      NULL, // FIXME: need software mesa for gl rendering <- gl_make_current
1165      NULL, // FIXME: need software mesa for gl rendering <- gl_proc_address_get
1166      NULL, // FIXME: need software mesa for gl rendering <- gl_native_surface_get
1167      NULL, // FIXME: need software mesa for gl rendering <- gl_api_get
1168      eng_image_load_error_get,
1169      eng_font_run_font_end_get,
1170      eng_image_animated_get,
1171      eng_image_animated_frame_count_get,
1172      eng_image_animated_loop_type_get,
1173      eng_image_animated_loop_count_get,
1174      eng_image_animated_frame_duration_get,
1175      eng_image_animated_frame_set
1176    /* FUTURE software generic calls go here */
1177 };
1178
1179 /*
1180  *****
1181  **
1182  ** MODULE ACCESSIBLE API API
1183  **
1184  *****
1185  */
1186
1187 static int
1188 module_open(Evas_Module *em)
1189 {
1190    if (!em) return 0;
1191    _evas_soft_gen_log_dom = eina_log_domain_register
1192      ("evas-software_generic", EVAS_DEFAULT_LOG_COLOR);
1193    if(_evas_soft_gen_log_dom<0)
1194      {
1195         EINA_LOG_ERR("Can not create a module log domain.");
1196         return 0;
1197      }
1198    em->functions = (void *)(&func);
1199    cpunum = eina_cpu_count();
1200    return 1;
1201 }
1202
1203 static void
1204 module_close(Evas_Module *em __UNUSED__)
1205 {
1206   eina_log_domain_unregister(_evas_soft_gen_log_dom);
1207 }
1208
1209 static Evas_Module_Api evas_modapi =
1210 {
1211    EVAS_MODULE_API_VERSION,
1212    "software_generic",
1213    "none",
1214    {
1215      module_open,
1216      module_close
1217    }
1218 };
1219
1220 EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_ENGINE, engine, software_generic);
1221
1222 #ifndef EVAS_STATIC_BUILD_SOFTWARE_GENERIC
1223 EVAS_EINA_MODULE_DEFINE(engine, software_generic);
1224 #endif