1 #include "evas_common.h" /* Also includes international specific stuff */
2 #include "evas_private.h"
11 static int cpunum = 0;
12 static int _evas_soft_gen_log_dom = -1;
15 eng_output_dump(void *data __UNUSED__)
17 evas_common_image_image_all_unload();
18 evas_common_font_font_all_unload();
22 eng_context_new(void *data __UNUSED__)
24 return evas_common_draw_context_new();
28 eng_context_free(void *data __UNUSED__, void *context)
30 evas_common_draw_context_free(context);
34 eng_context_clip_set(void *data __UNUSED__, void *context, int x, int y, int w, int h)
36 evas_common_draw_context_set_clip(context, x, y, w, h);
40 eng_context_clip_clip(void *data __UNUSED__, void *context, int x, int y, int w, int h)
42 evas_common_draw_context_clip_clip(context, x, y, w, h);
46 eng_context_clip_unset(void *data __UNUSED__, void *context)
48 evas_common_draw_context_unset_clip(context);
52 eng_context_clip_get(void *data __UNUSED__, void *context, int *x, int *y, int *w, int *h)
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;
62 eng_context_color_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
64 evas_common_draw_context_set_color(context, r, g, b, a);
68 eng_context_color_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
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));
78 eng_context_multiplier_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
80 evas_common_draw_context_set_multiplier(context, r, g, b, a);
84 eng_context_multiplier_unset(void *data __UNUSED__, void *context)
86 evas_common_draw_context_unset_multiplier(context);
90 eng_context_multiplier_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
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;
100 eng_context_cutout_add(void *data __UNUSED__, void *context, int x, int y, int w, int h)
102 evas_common_draw_context_add_cutout(context, x, y, w, h);
106 eng_context_cutout_clear(void *data __UNUSED__, void *context)
108 evas_common_draw_context_clear_cutouts(context);
112 eng_context_anti_alias_set(void *data __UNUSED__, void *context, unsigned char aa)
114 evas_common_draw_context_set_anti_alias(context, aa);
118 eng_context_anti_alias_get(void *data __UNUSED__, void *context)
120 return ((RGBA_Draw_Context *)context)->anti_alias;
124 eng_context_color_interpolation_set(void *data __UNUSED__, void *context, int color_space)
126 evas_common_draw_context_set_color_interpolation(context, color_space);
130 eng_context_color_interpolation_get(void *data __UNUSED__, void *context)
132 return ((RGBA_Draw_Context *)context)->interpolation.color_space;
136 eng_context_render_op_set(void *data __UNUSED__, void *context, int op)
138 evas_common_draw_context_set_render_op(context, op);
142 eng_context_render_op_get(void *data __UNUSED__, void *context)
144 return ((RGBA_Draw_Context *)context)->render_op;
150 eng_rectangle_draw(void *data __UNUSED__, void *context, void *surface, int x, int y, int w, int h)
152 #ifdef BUILD_PIPE_RENDER
154 #ifdef EVAS_FRAME_QUEUING
155 && evas_common_frameq_enabled()
158 evas_common_pipe_rectangle_draw(surface, context, x, y, w, h);
162 evas_common_rectangle_draw(surface, context, x, y, w, h);
163 evas_common_cpu_end_opt();
168 eng_line_draw(void *data __UNUSED__, void *context, void *surface, int x1, int y1, int x2, int y2)
170 #ifdef BUILD_PIPE_RENDER
172 #ifdef EVAS_FRAME_QUEUING
173 && evas_common_frameq_enabled()
176 evas_common_pipe_line_draw(surface, context, x1, y1, x2, y2);
180 evas_common_line_draw(surface, context, x1, y1, x2, y2);
181 evas_common_cpu_end_opt();
186 eng_polygon_point_add(void *data __UNUSED__, void *context __UNUSED__, void *polygon, int x, int y)
188 return evas_common_polygon_point_add(polygon, x, y);
192 eng_polygon_points_clear(void *data __UNUSED__, void *context __UNUSED__, void *polygon)
194 return evas_common_polygon_points_clear(polygon);
198 eng_polygon_draw(void *data __UNUSED__, void *context, void *surface, void *polygon, int x, int y)
200 #ifdef BUILD_PIPE_RENDER
202 #ifdef EVAS_FRAME_QUEUING
203 && evas_common_frameq_enabled()
206 evas_common_pipe_poly_draw(surface, context, polygon, x, y);
210 evas_common_polygon_draw(surface, context, polygon, x, y);
211 evas_common_cpu_end_opt();
216 eng_image_alpha_get(void *data __UNUSED__, void *image)
220 if (!image) return 1;
224 case EVAS_COLORSPACE_ARGB8888:
225 if (im->flags.alpha) return 1;
233 eng_image_colorspace_get(void *data __UNUSED__, void *image)
237 if (!image) return EVAS_COLORSPACE_ARGB8888;
243 eng_image_alpha_set(void *data __UNUSED__, void *image, int has_alpha)
247 if (!image) return NULL;
249 if (im->cache_entry.space != EVAS_COLORSPACE_ARGB8888)
251 im->cache_entry.flags.alpha = 0;
254 im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
255 evas_common_image_colorspace_dirty(im);
257 im->cache_entry.flags.alpha = has_alpha ? 1 : 0;
262 eng_image_border_set(void *data __UNUSED__, void *image, int l __UNUSED__, int r __UNUSED__, int t __UNUSED__, int b __UNUSED__)
271 eng_image_border_get(void *data __UNUSED__, void *image, int *l __UNUSED__, int *r __UNUSED__, int *t __UNUSED__, int *b __UNUSED__)
279 eng_image_comment_get(void *data __UNUSED__, void *image, char *key __UNUSED__)
283 if (!image) return NULL;
285 return im->info.comment;
289 eng_image_format_get(void *data __UNUSED__, void *image __UNUSED__)
295 eng_image_colorspace_set(void *data __UNUSED__, void *image, int cspace)
301 evas_cache_image_colorspace(im, cspace);
305 eng_image_native_set(void *data __UNUSED__, void *image, void *native __UNUSED__)
311 eng_image_native_get(void *data __UNUSED__, void *image __UNUSED__)
317 eng_image_load(void *data __UNUSED__, const char *file, const char *key, int *error, Evas_Image_Load_Opts *lo)
319 *error = EVAS_LOAD_ERROR_NONE;
320 return evas_common_load_image_from_file(file, key, lo, error);
324 eng_image_new_from_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
326 return evas_cache_image_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
330 eng_image_new_from_copied_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
332 return evas_cache_image_copied_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
336 eng_image_free(void *data __UNUSED__, void *image)
338 evas_cache_image_drop(image);
342 eng_image_size_get(void *data __UNUSED__, void *image, int *w, int *h)
352 eng_image_size_set(void *data __UNUSED__, void *image, int w, int h)
357 return evas_cache_image_size_set(image, w, h);
361 eng_image_dirty_region(void *data __UNUSED__, void *image, int x, int y, int w, int h)
363 Image_Entry *im = image;
365 if (!image) return NULL;
366 return evas_cache_image_dirty(im, x, y, w, h);
370 eng_image_data_get(void *data __UNUSED__, void *image, int to_write, DATA32 **image_data)
380 evas_cache_image_load_data(&im->cache_entry);
381 switch (im->cache_entry.space)
383 case EVAS_COLORSPACE_ARGB8888:
385 im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
386 *image_data = im->image.data;
388 case EVAS_COLORSPACE_YCBCR422P601_PL:
389 case EVAS_COLORSPACE_YCBCR422P709_PL:
390 *image_data = im->cs.data;
400 eng_image_data_put(void *data, void *image, DATA32 *image_data)
402 RGBA_Image *im, *im2;
404 if (!image) return NULL;
406 switch (im->cache_entry.space)
408 case EVAS_COLORSPACE_ARGB8888:
409 if (image_data != im->image.data)
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);
422 case EVAS_COLORSPACE_YCBCR422P601_PL:
423 case EVAS_COLORSPACE_YCBCR422P709_PL:
424 if (image_data != im->cs.data)
428 if (!im->cs.no_free) free(im->cs.data);
430 im->cs.data = image_data;
431 evas_common_image_colorspace_dirty(im);
442 eng_image_data_preload_request(void *data __UNUSED__, void *image, const void *target)
444 RGBA_Image *im = image;
447 evas_cache_image_preload_data(&im->cache_entry, target);
451 eng_image_data_preload_cancel(void *data __UNUSED__, void *image, const void *target)
453 RGBA_Image *im = image;
456 evas_cache_image_preload_cancel(&im->cache_entry, target);
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)
466 #ifdef BUILD_PIPE_RENDER
468 #ifdef EVAS_FRAME_QUEUING
469 && evas_common_frameq_enabled()
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);
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);
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);
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);
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);
504 evas_common_cpu_end_opt();
509 eng_image_map_draw(void *data __UNUSED__, void *context, void *surface, void *image, int npoints, RGBA_Map_Point *p, int smooth, int level)
514 if (npoints < 3) return;
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) &&
525 (p[1].u == (int)(im->cache_entry.w << FP)) &&
527 (p[2].u == (int)(im->cache_entry.w << FP)) &&
528 (p[2].v == (int)(im->cache_entry.h << FP)) &&
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))
540 dw = (p[2].x >> FP) - dx;
541 dh = (p[2].y >> FP) - dy;
543 (data, context, surface, image,
544 0, 0, im->cache_entry.w, im->cache_entry.h,
545 dx, dy, dw, dh, smooth);
549 #ifdef BUILD_PIPE_RENDER
551 # ifdef EVAS_FRAME_QUEUING
552 && evas_common_frameq_enabled()
555 evas_common_pipe_map_draw(im, surface, context, npoints, p, smooth, level);
558 evas_common_map_rgba(im, surface, context, npoints, p, smooth, level);
560 evas_common_cpu_end_opt();
564 eng_image_map_draw(data, context, surface, image, npoints - 2, p + 2,
570 eng_image_map_surface_new(void *data __UNUSED__, int w, int h, int alpha)
574 surface = evas_cache_image_copied_data(evas_common_image_cache_get(),
576 EVAS_COLORSPACE_ARGB8888);
577 pixels = evas_cache_image_pixels(surface);
582 eng_image_map_surface_free(void *data __UNUSED__, void *surface)
584 evas_cache_image_drop(surface);
588 eng_image_scale_hint_set(void *data __UNUSED__, void *image, int hint)
594 im->scale_hint = hint;
598 eng_image_scale_hint_get(void *data __UNUSED__, void *image)
602 if (!image) return EVAS_IMAGE_SCALE_HINT_NONE;
604 return im->scale_hint;
608 eng_image_cache_flush(void *data __UNUSED__)
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);
619 eng_image_cache_set(void *data __UNUSED__, int bytes)
621 evas_common_image_set_cache(bytes);
622 evas_common_rgba_image_scalecache_size_set(bytes);
626 eng_image_cache_get(void *data __UNUSED__)
628 return evas_common_image_get_cache();
632 eng_font_load(void *data __UNUSED__, const char *name, int size)
634 return evas_common_font_load(name, size);
638 eng_font_memory_load(void *data __UNUSED__, char *name, int size, const void *fdata, int fdata_size)
640 return evas_common_font_memory_load(name, size, fdata, fdata_size);
644 eng_font_add(void *data __UNUSED__, void *font, const char *name, int size)
646 return evas_common_font_add(font, name, size);
650 eng_font_memory_add(void *data __UNUSED__, void *font, char *name, int size, const void *fdata, int fdata_size)
652 return evas_common_font_memory_add(font, name, size, fdata, fdata_size);
656 eng_font_free(void *data __UNUSED__, void *font)
658 evas_common_font_free(font);
662 eng_font_ascent_get(void *data __UNUSED__, void *font)
664 return evas_common_font_ascent_get(font);
668 eng_font_descent_get(void *data __UNUSED__, void *font)
670 return evas_common_font_descent_get(font);
674 eng_font_max_ascent_get(void *data __UNUSED__, void *font)
676 return evas_common_font_max_ascent_get(font);
680 eng_font_max_descent_get(void *data __UNUSED__, void *font)
682 return evas_common_font_max_descent_get(font);
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)
688 evas_common_font_query_size(font, text, text_props, w, h);
692 eng_font_inset_get(void *data __UNUSED__, void *font, const Eina_Unicode *text)
694 return evas_common_font_query_inset(font, text);
698 eng_font_h_advance_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props)
702 evas_common_font_query_advance(font, text, text_props, &h, &v);
707 eng_font_v_advance_get(void *data __UNUSED__, void *font, const Eina_Unicode *text, const Evas_Text_Props *text_props)
711 evas_common_font_query_advance(font, text, text_props, &h, &v);
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)
718 return evas_common_font_query_pen_coords(font, text, text_props, pos, cpen_x, cy, cadv, ch);
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)
730 #if !defined(OT_SUPPORT) && defined(BIDI_SUPPORT)
731 evas_bidi_shape_string(text, par_props, pos, len);
733 return evas_common_text_props_content_create(font, text, text_props, len);
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)
739 return evas_common_font_query_char_coords(font, text, text_props, pos, cx, cy, cw, ch);
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)
745 return evas_common_font_query_char_at_coords(font, text, text_props, x, y, cx, cy, cw, ch);
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)
751 return evas_common_font_query_last_up_to_pos(font, text, text_props, x, y);
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)
757 #ifdef BUILD_PIPE_RENDER
759 #ifdef EVAS_FRAME_QUEUING
760 && evas_common_frameq_enabled()
763 evas_common_pipe_text_draw(surface, context, font, x, y, text, text_props);
767 evas_common_font_draw(surface, context, font, x, y, text, text_props);
768 evas_common_cpu_end_opt();
773 eng_font_cache_flush(void *data __UNUSED__)
775 evas_common_font_flush();
779 eng_font_cache_set(void *data __UNUSED__, int bytes)
781 evas_common_font_cache_set(bytes);
785 eng_font_cache_get(void *data __UNUSED__)
787 return evas_common_font_cache_get();
791 eng_font_hinting_set(void *data __UNUSED__, void *font, int hinting)
793 evas_common_font_hinting_set(font, hinting);
797 eng_font_hinting_can_hint(void *data __UNUSED__, int hinting)
799 return evas_common_hinting_available(hinting);
803 eng_canvas_alpha_get(void *data __UNUSED__, void *info __UNUSED__)
816 static Evas_Func func =
832 /* draw context virtual methods */
834 eng_canvas_alpha_get,
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 */
855 /* line draw funcs */
857 /* polygon draw funcs */
858 eng_polygon_point_add,
859 eng_polygon_points_clear,
861 /* image draw funcs */
863 eng_image_new_from_data,
864 eng_image_new_from_copied_data,
869 eng_image_dirty_region,
872 eng_image_data_preload_request,
873 eng_image_data_preload_cancel,
876 eng_image_border_set,
877 eng_image_border_get,
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,
889 /* font draw functions */
891 eng_font_memory_load,
896 eng_font_descent_get,
897 eng_font_max_ascent_get,
898 eng_font_max_descent_get,
899 eng_font_string_size_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,
906 /* font cache functions */
907 eng_font_cache_flush,
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) */
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 */
931 ** MODULE ACCESSIBLE API API
937 module_open(Evas_Module *em)
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)
944 EINA_LOG_ERR("Can not create a module log domain.");
947 em->functions = (void *)(&func);
948 cpunum = eina_cpu_count();
953 module_close(Evas_Module *em __UNUSED__)
955 eina_log_domain_unregister(_evas_soft_gen_log_dom);
958 static Evas_Module_Api evas_modapi =
960 EVAS_MODULE_API_VERSION,
969 EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_ENGINE, engine, software_generic);
971 #ifndef EVAS_STATIC_BUILD_SOFTWARE_GENERIC
972 EVAS_EINA_MODULE_DEFINE(engine, software_generic);