efl/legacy/evas/src/modules/engines/software_x11/evas_engine.c

392 lines
11 KiB
C
Raw Normal View History

2002-11-08 00:02:15 -08:00
#include "evas_common.h"
#include "evas_private.h"
#include "evas_engine.h"
#include "Evas_Engine_Software_X11.h"
/* function tables - filled in later (func and parent func) */
static Evas_Func func, pfunc;
/* engine struct data */
typedef struct _Render_Engine Render_Engine;
struct _Render_Engine
{
Tilebuf *tb;
Outbuf *ob;
Tilebuf_Rect *rects;
Evas_Object_List *cur_rect;
int end : 1;
};
/* prototypes we will use here */
static void *_output_setup(int w, int h, int rot, Display *disp, Drawable draw, Visual *vis, Colormap cmap, int depth, int debug, int grayscale, int max_colors, Pixmap mask, int shape_dither, int destination_alpha);
static Visual *_best_visual_get(Display *disp, int screen);
static Colormap _best_colormap_get(Display *disp, int screen);
static int _best_depth_get(Display *disp, int screen);
static Evas_Performance *_output_perf_new(Evas *e, Display *disp, Visual *vis, Colormap cmap, Drawable draw, int depth);
static Evas_Performance *_output_perf_test(Evas *e, Display *disp, Visual *vis, Colormap cmap, Drawable draw, int depth);
static char *_output_perf_data(Evas_Performance *perf);
static char *_output_perf_key(Evas_Performance *perf);
static void _output_perf_free(Evas_Performance *perf);
static void _output_perf_build(Evas_Performance *perf, const char *data);
static void _output_perf_device_store(Evas_Performance *perf);
static void *eng_info(Evas *e);
static void eng_info_free(Evas *e, void *info);
static void eng_setup(Evas *e, void *info);
static void eng_output_free(void *data);
static void eng_output_resize(void *data, int w, int h);
static void eng_output_tile_size_set(void *data, int w, int h);
static void eng_output_redraws_rect_add(void *data, int x, int y, int w, int h);
static void eng_output_redraws_rect_del(void *data, int x, int y, int w, int h);
static void eng_output_redraws_clear(void *data);
static void *eng_output_redraws_next_update_get(void *data, int *x, int *y, int *w, int *h, int *cx, int *cy, int *cw, int *ch);
static void eng_output_redraws_next_update_push(void *data, void *surface, int x, int y, int w, int h);
static void eng_output_flush(void *data);
/* internal engine routines */
static void *
_output_setup(int w, int h, int rot, Display *disp, Drawable draw, Visual *vis, Colormap cmap, int depth, int debug, int grayscale, int max_colors, Pixmap mask, int shape_dither, int destination_alpha)
{
Render_Engine *re;
Outbuf_Perf *perf;
re = calloc(1, sizeof(Render_Engine));
/* if we haven't initialized - init (automatic abort if already done) */
evas_common_cpu_init();
2002-11-08 00:02:15 -08:00
evas_common_blend_init();
evas_common_image_init();
evas_common_convert_init();
evas_common_scale_init();
evas_common_rectangle_init();
evas_common_gradient_init();
evas_common_polygon_init();
evas_common_line_init();
evas_common_font_init();
evas_common_draw_init();
evas_common_tilebuf_init();
2002-11-08 00:02:15 -08:00
evas_software_x11_x_init();
evas_software_x11_x_color_init();
evas_software_x11_outbuf_init();
/* get any stored performance metrics from device (xserver) */
perf = evas_software_x11_outbuf_perf_restore_x(disp, draw, vis, cmap, depth);
re->ob = evas_software_x11_outbuf_setup_x(w, h, rot, OUTBUF_DEPTH_INHERIT, disp, draw, vis, cmap, depth, perf, grayscale, max_colors, mask, shape_dither, destination_alpha);
if (!re->ob)
{
evas_software_x11_outbuf_perf_free(perf);
free(re);
return NULL;
}
evas_software_x11_outbuf_debug_set(re->ob, debug);
re->tb = evas_common_tilebuf_new(w, h);
if (!re->tb)
{
evas_software_x11_outbuf_free(re->ob);
free(re);
return NULL;
}
/* in preliminary tests 16x16 gave highest framerates */
evas_common_tilebuf_set_tile_size(re->tb, TILESIZE, TILESIZE);
return re;
}
static Visual *
_best_visual_get(Display *disp, int screen)
2002-11-08 00:02:15 -08:00
{
if (!disp) return NULL;
return DefaultVisual(disp, screen);
}
static Colormap
_best_colormap_get(Display *disp, int screen)
{
if (!disp) return 0;
return DefaultColormap(disp, screen);
}
2002-11-08 00:02:15 -08:00
static int
_best_depth_get(Display *disp, int screen)
{
if (!disp) return 0;
return DefaultDepth(disp, screen);
}
static Evas_Performance *
_output_perf_new(Evas *e, Display *disp, Visual *vis, Colormap cmap, Drawable draw, int depth)
{
return evas_software_x11_outbuf_perf_new_x(disp, draw, vis, cmap, depth);
e = NULL;
}
static Evas_Performance *
_output_perf_test(Evas *e, Display *disp, Visual *vis, Colormap cmap, Drawable draw, int depth)
{
return evas_software_x11_outbuf_perf_x(disp, draw, vis, cmap, depth);
e = NULL;
}
static char *
_output_perf_data(Evas_Performance *perf)
{
return evas_software_x11_outbuf_perf_serialize_x(perf);
}
static char *
_output_perf_key(Evas_Performance *perf)
{
return evas_software_x11_outbuf_perf_serialize_info_x(perf);
}
static void
_output_perf_free(Evas_Performance *perf)
{
evas_software_x11_outbuf_perf_free(perf);
}
static void
_output_perf_build(Evas_Performance *perf, const char *data)
{
evas_software_x11_outbuf_perf_deserialize_x(perf, data);
}
static void
_output_perf_device_store(Evas_Performance *perf)
{
evas_software_x11_outbuf_perf_store_x(perf);
}
2002-11-08 00:02:15 -08:00
/* engine api this module provides */
2002-11-08 00:02:15 -08:00
static void *
eng_info(Evas *e)
2002-11-08 00:02:15 -08:00
{
Evas_Engine_Info_Software_X11 *info;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
info = calloc(1, sizeof(Evas_Engine_Info_Software_X11));
if (!info) return NULL;
info->magic.magic = rand();
info->info.debug = 0;
info->info.alloc_grayscale = 0;
info->info.alloc_colors_max = 216;
info->func.best_visual_get = _best_visual_get;
info->func.best_colormap_get = _best_colormap_get;
info->func.best_depth_get = _best_depth_get;
info->func.performance_test = _output_perf_test;
info->func.performance_free = _output_perf_free;
info->func.performance_data_get = _output_perf_data;
info->func.performance_key_get = _output_perf_key;
info->func.performance_new = _output_perf_new;
info->func.performance_build = _output_perf_build;
info->func.performance_device_store = _output_perf_device_store;
2002-11-08 00:02:15 -08:00
return info;
e = NULL;
}
static void
eng_info_free(Evas *e, void *info)
2002-11-08 00:02:15 -08:00
{
Evas_Engine_Info_Software_X11 *in;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
in = (Evas_Engine_Info_Software_X11 *)info;
free(in);
}
static void
eng_setup(Evas *e, void *in)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
Evas_Engine_Info_Software_X11 *info;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
info = (Evas_Engine_Info_Software_X11 *)in;
if (!e->engine.data.output)
2005-05-21 19:49:50 -07:00
e->engine.data.output =
_output_setup(e->output.w,
e->output.h,
info->info.rotation,
info->info.display,
info->info.drawable,
info->info.visual,
info->info.colormap,
info->info.depth,
info->info.debug,
info->info.alloc_grayscale,
info->info.alloc_colors_max,
info->info.mask,
info->info.shape_dither,
info->info.destination_alpha);
2002-11-08 00:02:15 -08:00
if (!e->engine.data.output) return;
if (!e->engine.data.context)
2005-05-21 19:49:50 -07:00
e->engine.data.context =
e->engine.func->context_new(e->engine.data.output);
2002-11-08 00:02:15 -08:00
re = e->engine.data.output;
evas_software_x11_outbuf_drawable_set(re->ob, info->info.drawable);
evas_software_x11_outbuf_mask_set(re->ob, info->info.mask);
evas_software_x11_outbuf_rotation_set(re->ob, info->info.rotation);
2002-11-08 00:02:15 -08:00
}
static void
eng_output_free(void *data)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_software_x11_outbuf_free(re->ob);
evas_common_tilebuf_free(re->tb);
if (re->rects) evas_common_tilebuf_free_render_rects(re->rects);
2002-11-08 00:02:15 -08:00
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
2002-11-08 00:02:15 -08:00
}
static void
eng_output_resize(void *data, int w, int h)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
2005-05-21 19:49:50 -07:00
evas_software_x11_outbuf_reconfigure(re->ob, w, h,
evas_software_x11_outbuf_get_rot(re->ob),
2002-11-08 00:02:15 -08:00
OUTBUF_DEPTH_INHERIT);
evas_common_tilebuf_free(re->tb);
re->tb = evas_common_tilebuf_new(w, h);
2002-11-08 00:02:15 -08:00
if (re->tb)
evas_common_tilebuf_set_tile_size(re->tb, TILESIZE, TILESIZE);
2002-11-08 00:02:15 -08:00
}
static void
eng_output_tile_size_set(void *data, int w, int h)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
2005-05-21 19:49:50 -07:00
evas_common_tilebuf_set_tile_size(re->tb, w, h);
2002-11-08 00:02:15 -08:00
}
static void
eng_output_redraws_rect_add(void *data, int x, int y, int w, int h)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_common_tilebuf_add_redraw(re->tb, x, y, w, h);
2002-11-08 00:02:15 -08:00
}
static void
eng_output_redraws_rect_del(void *data, int x, int y, int w, int h)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_common_tilebuf_del_redraw(re->tb, x, y, w, h);
2002-11-08 00:02:15 -08:00
}
static void
eng_output_redraws_clear(void *data)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_common_tilebuf_clear(re->tb);
2002-11-08 00:02:15 -08:00
}
static void *
eng_output_redraws_next_update_get(void *data, int *x, int *y, int *w, int *h, int *cx, int *cy, int *cw, int *ch)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
RGBA_Image *surface;
Tilebuf_Rect *rect;
int ux, uy, uw, uh;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
if (re->end)
{
re->end = 0;
return NULL;
}
2005-05-21 19:49:50 -07:00
if (!re->rects)
2002-11-08 00:02:15 -08:00
{
re->rects = evas_common_tilebuf_get_render_rects(re->tb);
2002-11-08 00:02:15 -08:00
re->cur_rect = (Evas_Object_List *)re->rects;
}
if (!re->cur_rect) return NULL;
rect = (Tilebuf_Rect *)re->cur_rect;
ux = rect->x; uy = rect->y; uw = rect->w; uh = rect->h;
re->cur_rect = re->cur_rect->next;
2005-05-21 19:49:50 -07:00
if (!re->cur_rect)
2002-11-08 00:02:15 -08:00
{
evas_common_tilebuf_free_render_rects(re->rects);
2002-11-08 00:02:15 -08:00
re->rects = NULL;
re->end = 1;
}
2005-05-21 19:49:50 -07:00
surface = evas_software_x11_outbuf_new_region_for_update
(re->ob, ux, uy, uw, uh, cx, cy, cw, ch);
2002-11-08 00:02:15 -08:00
*x = ux; *y = uy; *w = uw; *h = uh;
return surface;
}
static void
eng_output_redraws_next_update_push(void *data, void *surface, int x, int y, int w, int h)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_software_x11_outbuf_push_updated_region(re->ob, surface, x, y, w, h);
evas_software_x11_outbuf_free_region_for_update(re->ob, surface);
evas_common_cpu_end_opt();
2002-11-08 00:02:15 -08:00
}
static void
eng_output_flush(void *data)
2002-11-08 00:02:15 -08:00
{
Render_Engine *re;
2005-05-21 19:49:50 -07:00
2002-11-08 00:02:15 -08:00
re = (Render_Engine *)data;
evas_software_x11_outbuf_flush(re->ob);
2002-11-08 00:02:15 -08:00
}
/* module advertising code */
int
module_open(Evas_Module *em)
2002-11-08 00:02:15 -08:00
{
if (!em) return 0;
/* get whatever engine module we inherit from */
if (!_evas_module_engine_inherit(&pfunc, "software_generic")) return 0;
/* store it for later use */
func = pfunc;
/* now to override methods */
#define ORD(f) EVAS_API_OVERRIDE(f, &func, eng_)
ORD(info);
ORD(info_free);
ORD(setup);
ORD(output_free);
ORD(output_resize);
ORD(output_tile_size_set);
ORD(output_redraws_rect_add);
ORD(output_redraws_rect_del);
ORD(output_redraws_clear);
ORD(output_redraws_next_update_get);
ORD(output_redraws_next_update_push);
ORD(output_flush);
/* now advertise out own api */
em->functions = (void *)(&func);
2002-11-08 00:02:15 -08:00
return 1;
}
void module_close(void)
{
}
Evas_Module_Api evas_modapi =
{
EVAS_MODULE_API_VERSION,
EVAS_MODULE_TYPE_ENGINE,
"software_x11",
"none"
};