methinks nash you missed doing the pipe pipeline for map changes.
[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_cutout_add(void *data __UNUSED__, void *context, int x, int y, int w, int h)
101 {
102    evas_common_draw_context_add_cutout(context, x, y, w, h);
103 }
104
105 static void
106 eng_context_cutout_clear(void *data __UNUSED__, void *context)
107 {
108    evas_common_draw_context_clear_cutouts(context);
109 }
110
111 static void
112 eng_context_anti_alias_set(void *data __UNUSED__, void *context, unsigned char aa)
113 {
114    evas_common_draw_context_set_anti_alias(context, aa);
115 }
116
117 static unsigned char
118 eng_context_anti_alias_get(void *data __UNUSED__, void *context)
119 {
120    return ((RGBA_Draw_Context *)context)->anti_alias;
121 }
122
123 static void
124 eng_context_color_interpolation_set(void *data __UNUSED__, void *context, int color_space)
125 {
126    evas_common_draw_context_set_color_interpolation(context, color_space);
127 }
128
129 static int
130 eng_context_color_interpolation_get(void *data __UNUSED__, void *context)
131 {
132    return ((RGBA_Draw_Context *)context)->interpolation.color_space;
133 }
134
135 static void
136 eng_context_render_op_set(void *data __UNUSED__, void *context, int op)
137 {
138    evas_common_draw_context_set_render_op(context, op);
139 }
140
141 static int
142 eng_context_render_op_get(void *data __UNUSED__, void *context)
143 {
144    return ((RGBA_Draw_Context *)context)->render_op;
145 }
146
147
148
149 static void
150 eng_rectangle_draw(void *data __UNUSED__, void *context, void *surface, int x, int y, int w, int h)
151 {
152 #ifdef BUILD_PIPE_RENDER
153    if ((cpunum > 1)
154 #ifdef EVAS_FRAME_QUEUING
155         && evas_common_frameq_enabled()
156 #endif
157         )
158      evas_common_pipe_rectangle_draw(surface, context, x, y, w, h);
159    else
160 #endif
161      {
162         evas_common_rectangle_draw(surface, context, x, y, w, h);
163         evas_common_cpu_end_opt();
164      }
165 }
166
167 static void
168 eng_line_draw(void *data __UNUSED__, void *context, void *surface, int x1, int y1, int x2, int y2)
169 {
170 #ifdef BUILD_PIPE_RENDER
171    if ((cpunum > 1)
172  #ifdef EVAS_FRAME_QUEUING
173         && evas_common_frameq_enabled()
174 #endif
175         )
176     evas_common_pipe_line_draw(surface, context, x1, y1, x2, y2);
177    else
178 #endif   
179      {
180         evas_common_line_draw(surface, context, x1, y1, x2, y2);
181         evas_common_cpu_end_opt();
182      }
183 }
184
185 static void *
186 eng_polygon_point_add(void *data __UNUSED__, void *context __UNUSED__, void *polygon, int x, int y)
187 {
188    return evas_common_polygon_point_add(polygon, x, y);
189 }
190
191 static void *
192 eng_polygon_points_clear(void *data __UNUSED__, void *context __UNUSED__, void *polygon)
193 {
194    return evas_common_polygon_points_clear(polygon);
195 }
196
197 static void
198 eng_polygon_draw(void *data __UNUSED__, void *context, void *surface, void *polygon, int x, int y)
199 {
200 #ifdef BUILD_PIPE_RENDER
201    if ((cpunum > 1)
202 #ifdef EVAS_FRAME_QUEUING
203         && evas_common_frameq_enabled()
204 #endif
205         )
206      evas_common_pipe_poly_draw(surface, context, polygon, x, y);
207    else
208 #endif
209      {
210         evas_common_polygon_draw(surface, context, polygon, x, y);
211         evas_common_cpu_end_opt();
212      }
213 }
214
215 static int
216 eng_image_alpha_get(void *data __UNUSED__, void *image)
217 {
218    Image_Entry *im;
219
220    if (!image) return 1;
221    im = image;
222    switch (im->space)
223      {
224       case EVAS_COLORSPACE_ARGB8888:
225         if (im->flags.alpha) return 1;
226       default:
227         break;
228      }
229    return 0;
230 }
231
232 static int
233 eng_image_colorspace_get(void *data __UNUSED__, void *image)
234 {
235    Image_Entry *im;
236
237    if (!image) return EVAS_COLORSPACE_ARGB8888;
238    im = image;
239    return im->space;
240 }
241
242 static void *
243 eng_image_alpha_set(void *data __UNUSED__, void *image, int has_alpha)
244 {
245    RGBA_Image *im;
246
247    if (!image) return NULL;
248    im = image;
249    if (im->cache_entry.space != EVAS_COLORSPACE_ARGB8888)
250      {
251         im->cache_entry.flags.alpha = 0;
252         return im;
253      }
254    im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
255    evas_common_image_colorspace_dirty(im);
256
257    im->cache_entry.flags.alpha = has_alpha ? 1 : 0;
258    return im;
259 }
260
261 static void *
262 eng_image_border_set(void *data __UNUSED__, void *image, int l __UNUSED__, int r __UNUSED__, int t __UNUSED__, int b __UNUSED__)
263 {
264    RGBA_Image *im;
265
266    im = image;
267    return im;
268 }
269
270 static void
271 eng_image_border_get(void *data __UNUSED__, void *image, int *l __UNUSED__, int *r __UNUSED__, int *t __UNUSED__, int *b __UNUSED__)
272 {
273    RGBA_Image *im;
274
275    im = image;
276 }
277
278 static char *
279 eng_image_comment_get(void *data __UNUSED__, void *image, char *key __UNUSED__)
280 {
281    RGBA_Image *im;
282
283    if (!image) return NULL;
284    im = image;
285    return im->info.comment;
286 }
287
288 static char *
289 eng_image_format_get(void *data __UNUSED__, void *image __UNUSED__)
290 {
291    return NULL;
292 }
293
294 static void
295 eng_image_colorspace_set(void *data __UNUSED__, void *image, int cspace)
296 {
297    Image_Entry *im;
298
299    if (!image) return;
300    im = image;
301    evas_cache_image_colorspace(im, cspace);
302 }
303
304 static void *
305 eng_image_native_set(void *data __UNUSED__, void *image, void *native __UNUSED__)
306 {
307    return image;
308 }
309
310 static void *
311 eng_image_native_get(void *data __UNUSED__, void *image __UNUSED__)
312 {
313    return NULL;
314 }
315
316 static void *
317 eng_image_load(void *data __UNUSED__, const char *file, const char *key, int *error, Evas_Image_Load_Opts *lo)
318 {
319    *error = EVAS_LOAD_ERROR_NONE;
320    return evas_common_load_image_from_file(file, key, lo, error);
321 }
322
323 static void *
324 eng_image_new_from_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
325 {
326    return evas_cache_image_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
327 }
328
329 static void *
330 eng_image_new_from_copied_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
331 {
332    return evas_cache_image_copied_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
333 }
334
335 static void
336 eng_image_free(void *data __UNUSED__, void *image)
337 {
338    evas_cache_image_drop(image);
339 }
340
341 static void
342 eng_image_size_get(void *data __UNUSED__, void *image, int *w, int *h)
343 {
344    Image_Entry *im;
345
346    im = image;
347    if (w) *w = im->w;
348    if (h) *h = im->h;
349 }
350
351 static void *
352 eng_image_size_set(void *data __UNUSED__, void *image, int w, int h)
353 {
354    Image_Entry *im;
355
356    im = image;
357    return evas_cache_image_size_set(image, w, h);
358 }
359
360 static void *
361 eng_image_dirty_region(void *data __UNUSED__, void *image, int x, int y, int w, int h)
362 {
363    Image_Entry *im = image;
364
365    if (!image) return NULL;
366    return evas_cache_image_dirty(im, x, y, w, h);
367 }
368
369 static void *
370 eng_image_data_get(void *data __UNUSED__, void *image, int to_write, DATA32 **image_data)
371 {
372    RGBA_Image *im;
373
374    if (!image)
375      {
376         *image_data = NULL;
377         return NULL;
378      }
379    im = image;
380    evas_cache_image_load_data(&im->cache_entry);
381    switch (im->cache_entry.space)
382      {
383       case EVAS_COLORSPACE_ARGB8888:
384         if (to_write)
385           im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
386         *image_data = im->image.data;
387         break;
388       case EVAS_COLORSPACE_YCBCR422P601_PL:
389       case EVAS_COLORSPACE_YCBCR422P709_PL:
390         *image_data = im->cs.data;
391         break;
392       default:
393         abort();
394         break;
395      }
396    return im;
397 }
398
399 static void *
400 eng_image_data_put(void *data, void *image, DATA32 *image_data)
401 {
402    RGBA_Image *im, *im2;
403
404    if (!image) return NULL;
405    im = image;
406    switch (im->cache_entry.space)
407      {
408       case EVAS_COLORSPACE_ARGB8888:
409         if (image_data != im->image.data)
410           {
411              int w, h;
412
413              w = im->cache_entry.w;
414              h = im->cache_entry.h;
415              im2 = eng_image_new_from_data(data, w, h, image_data,
416                                            eng_image_alpha_get(data, image),
417                                            eng_image_colorspace_get(data, image));
418              evas_cache_image_drop(&im->cache_entry);
419              im = im2;
420           }
421         break;
422       case EVAS_COLORSPACE_YCBCR422P601_PL:
423       case EVAS_COLORSPACE_YCBCR422P709_PL:
424         if (image_data != im->cs.data)
425           {
426              if (im->cs.data)
427                {
428                   if (!im->cs.no_free) free(im->cs.data);
429                }
430              im->cs.data = image_data;
431              evas_common_image_colorspace_dirty(im);
432           }
433         break;
434       default:
435         abort();
436         break;
437      }
438    return im;
439 }
440
441 static void
442 eng_image_data_preload_request(void *data __UNUSED__, void *image, const void *target)
443 {
444    RGBA_Image *im = image;
445
446    if (!im) return ;
447    evas_cache_image_preload_data(&im->cache_entry, target);
448 }
449
450 static void
451 eng_image_data_preload_cancel(void *data __UNUSED__, void *image, const void *target)
452 {
453    RGBA_Image *im = image;
454
455    if (!im) return ;
456    evas_cache_image_preload_cancel(&im->cache_entry, target);
457 }
458
459 static void
460 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)
461 {
462    RGBA_Image *im;
463
464    if (!image) return;
465    im = image;
466 #ifdef BUILD_PIPE_RENDER
467    if ((cpunum > 1)
468 #ifdef EVAS_FRAME_QUEUING
469         && evas_common_frameq_enabled()
470 #endif
471         )
472      {
473         evas_common_rgba_image_scalecache_prepare((Image_Entry *)(im), 
474                                                   surface, context, smooth,
475                                                   src_x, src_y, src_w, src_h,
476                                                   dst_x, dst_y, dst_w, dst_h);
477         
478         evas_common_pipe_image_draw(im, surface, context, smooth,
479                                     src_x, src_y, src_w, src_h,
480                                     dst_x, dst_y, dst_w, dst_h);
481      }
482    else
483 #endif
484      {
485 //        if (im->cache_entry.space == EVAS_COLORSPACE_ARGB8888)
486 //          evas_cache_image_load_data(&im->cache_entry);
487 //        evas_common_image_colorspace_normalize(im);
488         evas_common_rgba_image_scalecache_prepare(&im->cache_entry, surface, context, smooth,
489                                                   src_x, src_y, src_w, src_h,
490                                                   dst_x, dst_y, dst_w, dst_h);
491         evas_common_rgba_image_scalecache_do(&im->cache_entry, surface, context, smooth,
492                                              src_x, src_y, src_w, src_h,
493                                              dst_x, dst_y, dst_w, dst_h);
494 /*        
495         if (smooth)
496           evas_common_scale_rgba_in_to_out_clip_smooth(im, surface, context,
497                                                        src_x, src_y, src_w, src_h,
498                                                        dst_x, dst_y, dst_w, dst_h);
499         else
500           evas_common_scale_rgba_in_to_out_clip_sample(im, surface, context,
501                                                        src_x, src_y, src_w, src_h,
502                                                        dst_x, dst_y, dst_w, dst_h);
503  */
504         evas_common_cpu_end_opt();
505      }
506 }
507
508 static void
509 eng_image_map_draw(void *data __UNUSED__, void *context, void *surface, void *image, int npoints, RGBA_Map_Point *p, int smooth, int level)
510 {
511    RGBA_Image *im;
512
513    if (!image) return;
514    if (npoints < 3) return;
515    im = image;
516
517    if ((p[0].x == p[3].x) &&
518        (p[1].x == p[2].x) &&
519        (p[0].y == p[1].y) &&
520        (p[3].y == p[2].y) &&
521        (p[0].x <= p[1].x) &&
522        (p[0].y <= p[2].y) &&
523        (p[0].u == 0) &&
524        (p[0].v == 0) &&
525        (p[1].u == (int)(im->cache_entry.w << FP)) &&
526        (p[1].v == 0) &&
527        (p[2].u == (int)(im->cache_entry.w << FP)) &&
528        (p[2].v == (int)(im->cache_entry.h << FP)) &&
529        (p[3].u == 0) &&
530        (p[3].v == (int)(im->cache_entry.h << FP)) &&
531        (p[0].col == 0xffffffff) &&
532        (p[1].col == 0xffffffff) &&
533        (p[2].col == 0xffffffff) &&
534        (p[3].col == 0xffffffff))
535      {
536         int dx, dy, dw, dh;
537
538         dx = p[0].x >> FP;
539         dy = p[0].y >> FP;
540         dw = (p[2].x >> FP) - dx;
541         dh = (p[2].y >> FP) - dy;
542         eng_image_draw
543           (data, context, surface, image,
544            0, 0, im->cache_entry.w, im->cache_entry.h,
545            dx, dy, dw, dh, smooth);
546      }
547    else
548      {
549 #ifdef BUILD_PIPE_RENDER
550         if ((cpunum > 1)
551 # ifdef EVAS_FRAME_QUEUING
552        && evas_common_frameq_enabled()
553 # endif
554         )
555           evas_common_pipe_map_draw(im, surface, context, npoints, p, smooth, level);
556         else
557 #endif
558           evas_common_map_rgba(im, surface, context, npoints, p, smooth, level);
559      }
560    evas_common_cpu_end_opt();
561
562    if (npoints > 4)
563      {
564         eng_image_map_draw(data, context, surface, image, npoints - 2, p + 2,
565                            smooth, level);
566      }
567 }
568
569 static void *
570 eng_image_map_surface_new(void *data __UNUSED__, int w, int h, int alpha)
571 {
572    void *surface;
573    DATA32 *pixels;
574    surface = evas_cache_image_copied_data(evas_common_image_cache_get(), 
575                                           w, h, NULL, alpha, 
576                                           EVAS_COLORSPACE_ARGB8888);
577    pixels = evas_cache_image_pixels(surface);
578    return surface;
579 }
580
581 static void
582 eng_image_map_surface_free(void *data __UNUSED__, void *surface)
583 {
584    evas_cache_image_drop(surface);
585 }
586
587 static void
588 eng_image_scale_hint_set(void *data __UNUSED__, void *image, int hint)
589 {
590    Image_Entry *im;
591
592    if (!image) return;
593    im = image;
594    im->scale_hint = hint;
595 }
596
597 static int
598 eng_image_scale_hint_get(void *data __UNUSED__, void *image)
599 {
600    Image_Entry *im;
601
602    if (!image) return EVAS_IMAGE_SCALE_HINT_NONE;
603    im = image;
604    return im->scale_hint;
605 }
606
607 static void
608 eng_image_cache_flush(void *data __UNUSED__)
609 {
610    int tmp_size;
611
612    tmp_size = evas_common_image_get_cache();
613    evas_common_image_set_cache(0);
614    evas_common_rgba_image_scalecache_flush();
615    evas_common_image_set_cache(tmp_size);
616 }
617
618 static void
619 eng_image_cache_set(void *data __UNUSED__, int bytes)
620 {
621    evas_common_image_set_cache(bytes);
622    evas_common_rgba_image_scalecache_size_set(bytes);
623 }
624
625 static int
626 eng_image_cache_get(void *data __UNUSED__)
627 {
628    return evas_common_image_get_cache();
629 }
630
631 static void *
632 eng_font_load(void *data __UNUSED__, const char *name, int size)
633 {
634    return evas_common_font_load(name, size);
635 }
636
637 static void *
638 eng_font_memory_load(void *data __UNUSED__, char *name, int size, const void *fdata, int fdata_size)
639 {
640    return evas_common_font_memory_load(name, size, fdata, fdata_size);
641 }
642
643 static void *
644 eng_font_add(void *data __UNUSED__, void *font, const char *name, int size)
645 {
646    return evas_common_font_add(font, name, size);
647 }
648
649 static void *
650 eng_font_memory_add(void *data __UNUSED__, void *font, char *name, int size, const void *fdata, int fdata_size)
651 {
652    return evas_common_font_memory_add(font, name, size, fdata, fdata_size);
653 }
654
655 static void
656 eng_font_free(void *data __UNUSED__, void *font)
657 {
658    evas_common_font_free(font);
659 }
660
661 static int
662 eng_font_ascent_get(void *data __UNUSED__, void *font)
663 {
664    return evas_common_font_ascent_get(font);
665 }
666
667 static int
668 eng_font_descent_get(void *data __UNUSED__, void *font)
669 {
670    return evas_common_font_descent_get(font);
671 }
672
673 static int
674 eng_font_max_ascent_get(void *data __UNUSED__, void *font)
675 {
676    return evas_common_font_max_ascent_get(font);
677 }
678
679 static int
680 eng_font_max_descent_get(void *data __UNUSED__, void *font)
681 {
682    return evas_common_font_max_descent_get(font);
683 }
684
685 static void
686 eng_font_string_size_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props, int *w, int *h)
687 {
688    evas_common_font_query_size(font, text, text_props, w, h);
689 }
690
691 static int
692 eng_font_inset_get(void *data __UNUSED__, void *font, const Eina_Unicode *text)
693 {
694    return evas_common_font_query_inset(font, text);
695 }
696
697 static int
698 eng_font_h_advance_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props)
699 {
700    int h, v;
701
702    evas_common_font_query_advance(font, text, text_props, &h, &v);
703    return h;
704 }
705
706 static int
707 eng_font_v_advance_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props)
708 {
709    int h, v;
710
711    evas_common_font_query_advance(font, text, text_props, &h, &v);
712    return v;
713 }
714
715 static int
716 eng_font_pen_coords_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props, int pos, int *cpen_x, int *cy, int *cadv, int *ch)
717 {
718    return evas_common_font_query_pen_coords(font, text, text_props, pos, cpen_x, cy, cadv, ch);
719 }
720
721 static Eina_Bool
722 eng_font_text_props_info_create(void *data __UNUSED__, void *font, Eina_Unicode *text, Evas_Text_Props *text_props, const Evas_BiDi_Paragraph_Props *par_props, size_t pos, size_t len)
723 {
724    (void) font;
725    (void) text;
726    (void) text_props;
727    (void) par_props;
728    (void) pos;
729    (void) len;
730 #if !defined(OT_SUPPORT) && defined(BIDI_SUPPORT)
731    evas_bidi_shape_string(text, par_props, pos, len);
732 #endif
733    return evas_common_text_props_content_create(font, text, text_props, len);
734 }
735
736 static int
737 eng_font_char_coords_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props, int pos, int *cx, int *cy, int *cw, int *ch)
738 {
739    return evas_common_font_query_char_coords(font, text, text_props, pos, cx, cy, cw, ch);
740 }
741
742 static int
743 eng_font_char_at_coords_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props, int x, int y, int *cx, int *cy, int *cw, int *ch)
744 {
745    return evas_common_font_query_char_at_coords(font, text, text_props, x, y, cx, cy, cw, ch);
746 }
747
748 static int
749 eng_font_last_up_to_pos(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props, int x, int y)
750 {
751    return evas_common_font_query_last_up_to_pos(font, text, text_props, x, y);
752 }
753
754 static void
755 eng_font_draw(void *data __UNUSED__, void *context, void *surface, void *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const Eina_Unicode *text, const Evas_Text_Props *text_props)
756 {
757 #ifdef BUILD_PIPE_RENDER
758    if ((cpunum > 1)
759 #ifdef EVAS_FRAME_QUEUING
760         && evas_common_frameq_enabled()
761 #endif
762         )
763      evas_common_pipe_text_draw(surface, context, font, x, y, text, text_props);
764    else
765 #endif   
766      {
767         evas_common_font_draw(surface, context, font, x, y, text, text_props);
768         evas_common_cpu_end_opt();
769      }
770 }
771
772 static void
773 eng_font_cache_flush(void *data __UNUSED__)
774 {
775    evas_common_font_flush();
776 }
777
778 static void
779 eng_font_cache_set(void *data __UNUSED__, int bytes)
780 {
781    evas_common_font_cache_set(bytes);
782 }
783
784 static int
785 eng_font_cache_get(void *data __UNUSED__)
786 {
787    return evas_common_font_cache_get();
788 }
789
790 static void
791 eng_font_hinting_set(void *data __UNUSED__, void *font, int hinting)
792 {
793    evas_common_font_hinting_set(font, hinting);
794 }
795
796 static int
797 eng_font_hinting_can_hint(void *data __UNUSED__, int hinting)
798 {
799    return evas_common_hinting_available(hinting);
800 }
801
802 static Eina_Bool
803 eng_canvas_alpha_get(void *data __UNUSED__, void *info __UNUSED__)
804 {
805    return EINA_TRUE;
806 }
807
808 /*
809  *****
810  **
811  ** ENGINE API
812  **
813  *****
814  */
815
816 static Evas_Func func =
817 {
818    NULL,
819      NULL,
820      NULL,
821      NULL,
822      NULL,
823      NULL,
824      NULL,
825      NULL,
826      NULL,
827      NULL,
828      NULL,
829      NULL,
830      NULL,
831      eng_output_dump,
832      /* draw context virtual methods */
833      eng_context_new,
834      eng_canvas_alpha_get,
835      eng_context_free,
836      eng_context_clip_set,
837      eng_context_clip_clip,
838      eng_context_clip_unset,
839      eng_context_clip_get,
840      eng_context_color_set,
841      eng_context_color_get,
842      eng_context_multiplier_set,
843      eng_context_multiplier_unset,
844      eng_context_multiplier_get,
845      eng_context_cutout_add,
846      eng_context_cutout_clear,
847      eng_context_anti_alias_set,
848      eng_context_anti_alias_get,
849      eng_context_color_interpolation_set,
850      eng_context_color_interpolation_get,
851      eng_context_render_op_set,
852      eng_context_render_op_get,
853      /* rect draw funcs */
854      eng_rectangle_draw,
855      /* line draw funcs */
856      eng_line_draw,
857      /* polygon draw funcs */
858      eng_polygon_point_add,
859      eng_polygon_points_clear,
860      eng_polygon_draw,
861      /* image draw funcs */
862      eng_image_load,
863      eng_image_new_from_data,
864      eng_image_new_from_copied_data,
865      eng_image_free,
866      eng_image_size_get,
867      eng_image_size_set,
868      NULL,
869      eng_image_dirty_region,
870      eng_image_data_get,
871      eng_image_data_put,
872      eng_image_data_preload_request,
873      eng_image_data_preload_cancel,
874      eng_image_alpha_set,
875      eng_image_alpha_get,
876      eng_image_border_set,
877      eng_image_border_get,
878      eng_image_draw,
879      eng_image_comment_get,
880      eng_image_format_get,
881      eng_image_colorspace_set,
882      eng_image_colorspace_get,
883      eng_image_native_set,
884      eng_image_native_get,
885      /* image cache funcs */
886      eng_image_cache_flush,
887      eng_image_cache_set,
888      eng_image_cache_get,
889      /* font draw functions */
890      eng_font_load,
891      eng_font_memory_load,
892      eng_font_add,
893      eng_font_memory_add,
894      eng_font_free,
895      eng_font_ascent_get,
896      eng_font_descent_get,
897      eng_font_max_ascent_get,
898      eng_font_max_descent_get,
899      eng_font_string_size_get,
900      eng_font_inset_get,
901      eng_font_h_advance_get,
902      eng_font_v_advance_get,
903      eng_font_char_coords_get,
904      eng_font_char_at_coords_get,
905      eng_font_draw,
906      /* font cache functions */
907      eng_font_cache_flush,
908      eng_font_cache_set,
909      eng_font_cache_get,
910      /* font hinting functions */
911      eng_font_hinting_set,
912      eng_font_hinting_can_hint,
913      eng_image_scale_hint_set,
914      eng_image_scale_hint_get,
915      /* more font draw functions */
916      eng_font_last_up_to_pos,
917      /* FUTURE software generic calls go here (done) */
918      eng_image_map_draw,
919      eng_image_map_surface_new,
920      eng_image_map_surface_free,
921      NULL, // eng_image_content_hint_set - software doesn't use it
922      NULL, // eng_image_content_hint_get - software doesn't use it
923      eng_font_pen_coords_get,
924      eng_font_text_props_info_create
925      /* FUTURE software generic calls go here */
926 };
927
928 /*
929  *****
930  **
931  ** MODULE ACCESSIBLE API API
932  **
933  *****
934  */
935
936 static int
937 module_open(Evas_Module *em)
938 {
939    if (!em) return 0;
940    _evas_soft_gen_log_dom = eina_log_domain_register
941      ("evas-software_generic", EVAS_DEFAULT_LOG_COLOR);
942    if(_evas_soft_gen_log_dom<0)
943      {
944         EINA_LOG_ERR("Can not create a module log domain.");
945         return 0;
946      }
947    em->functions = (void *)(&func);
948    cpunum = eina_cpu_count();
949    return 1;
950 }
951
952 static void
953 module_close(Evas_Module *em __UNUSED__)
954 {
955   eina_log_domain_unregister(_evas_soft_gen_log_dom);
956 }
957
958 static Evas_Module_Api evas_modapi =
959 {
960    EVAS_MODULE_API_VERSION,
961    "software_generic",
962    "none",
963    {
964      module_open,
965      module_close
966    }
967 };
968
969 EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_ENGINE, engine, software_generic);
970
971 #ifndef EVAS_STATIC_BUILD_SOFTWARE_GENERIC
972 EVAS_EINA_MODULE_DEFINE(engine, software_generic);
973 #endif