keep the function call naming consistent with other engines of the same type.

SVN revision: 20944
This commit is contained in:
Carsten Haitzler 2006-03-03 07:28:26 +00:00
parent 699a1a4fea
commit c044dca01c
1 changed files with 20 additions and 20 deletions

View File

@ -21,16 +21,16 @@ struct _Render_Engine
/* prototypes we will use here */ /* prototypes we will use here */
static void *_output_setup(int w, int h, int rot, XCBConnection *conn, XCBDRAWABLE draw, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, int depth, int debug, int grayscale, int max_colors, XCBDRAWABLE mask, int shape_dither); static void *_output_setup(int w, int h, int rot, XCBConnection *conn, XCBDRAWABLE draw, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, int depth, int debug, int grayscale, int max_colors, XCBDRAWABLE mask, int shape_dither);
static XCBVISUALTYPE *eng_best_visual_get(XCBConnection *conn, int screen); static XCBVISUALTYPE *_best_visual_get(XCBConnection *conn, int screen);
static XCBCOLORMAP eng_best_colormap_get(XCBConnection *conn, int screen); static XCBCOLORMAP _best_colormap_get(XCBConnection *conn, int screen);
static int eng_best_depth_get(XCBConnection *conn, int screen); static int _best_depth_get(XCBConnection *conn, int screen);
static Evas_Performance *eng_output_perf_new(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth); static Evas_Performance *_output_perf_new(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth);
static Evas_Performance *eng_output_perf_test(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth); static Evas_Performance *_output_perf_test(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth);
static char *eng_output_perf_data(Evas_Performance *perf); static char *_output_perf_data(Evas_Performance *perf);
static char *eng_output_perf_key(Evas_Performance *perf); static char *_output_perf_key(Evas_Performance *perf);
static void eng_output_perf_free(Evas_Performance *perf); static void _output_perf_free(Evas_Performance *perf);
static void eng_output_perf_build(Evas_Performance *perf, const char *data); static void _output_perf_build(Evas_Performance *perf, const char *data);
static void eng_output_perf_device_store(Evas_Performance *perf); static void _output_perf_device_store(Evas_Performance *perf);
static void *eng_info(Evas *e); static void *eng_info(Evas *e);
static void eng_info_free(Evas *e, void *info); static void eng_info_free(Evas *e, void *info);
@ -131,7 +131,7 @@ _screen_get(XCBConnection *conn, int screen)
} }
static XCBVISUALTYPE * static XCBVISUALTYPE *
eng_best_visual_get(XCBConnection *conn, int screen) _best_visual_get(XCBConnection *conn, int screen)
{ {
XCBSCREEN *scr; XCBSCREEN *scr;
XCBDEPTH *d; XCBDEPTH *d;
@ -153,7 +153,7 @@ eng_best_visual_get(XCBConnection *conn, int screen)
} }
static XCBCOLORMAP static XCBCOLORMAP
eng_best_colormap_get(XCBConnection *conn, int screen) _best_colormap_get(XCBConnection *conn, int screen)
{ {
XCBSCREEN *scr; XCBSCREEN *scr;
XCBCOLORMAP c; XCBCOLORMAP c;
@ -167,7 +167,7 @@ eng_best_colormap_get(XCBConnection *conn, int screen)
} }
static int static int
eng_best_depth_get(XCBConnection *conn, int screen) _best_depth_get(XCBConnection *conn, int screen)
{ {
XCBSCREEN *scr; XCBSCREEN *scr;
@ -179,45 +179,45 @@ eng_best_depth_get(XCBConnection *conn, int screen)
} }
static Evas_Performance * static Evas_Performance *
eng_output_perf_new(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth) _output_perf_new(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth)
{ {
return evas_software_xcb_outbuf_perf_new_x(conn, draw, vis, cmap, depth); return evas_software_xcb_outbuf_perf_new_x(conn, draw, vis, cmap, depth);
e = NULL; e = NULL;
} }
static Evas_Performance * static Evas_Performance *
eng_output_perf_test(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth) _output_perf_test(Evas *e, XCBConnection *conn, XCBVISUALTYPE *vis, XCBCOLORMAP cmap, XCBDRAWABLE draw, int depth)
{ {
return evas_software_xcb_outbuf_perf_x(conn, draw, vis, cmap, depth); return evas_software_xcb_outbuf_perf_x(conn, draw, vis, cmap, depth);
e = NULL; e = NULL;
} }
static char * static char *
eng_output_perf_data(Evas_Performance *perf) _output_perf_data(Evas_Performance *perf)
{ {
return evas_software_xcb_outbuf_perf_serialize_x(perf); return evas_software_xcb_outbuf_perf_serialize_x(perf);
} }
static char * static char *
eng_output_perf_key(Evas_Performance *perf) _output_perf_key(Evas_Performance *perf)
{ {
return evas_software_xcb_outbuf_perf_serialize_info_x(perf); return evas_software_xcb_outbuf_perf_serialize_info_x(perf);
} }
static void static void
eng_output_perf_free(Evas_Performance *perf) _output_perf_free(Evas_Performance *perf)
{ {
evas_software_xcb_outbuf_perf_free(perf); evas_software_xcb_outbuf_perf_free(perf);
} }
static void static void
eng_output_perf_build(Evas_Performance *perf, const char *data) _output_perf_build(Evas_Performance *perf, const char *data)
{ {
evas_software_xcb_outbuf_perf_deserialize_x(perf, data); evas_software_xcb_outbuf_perf_deserialize_x(perf, data);
} }
static void static void
eng_output_perf_device_store(Evas_Performance *perf) _output_perf_device_store(Evas_Performance *perf)
{ {
evas_software_xcb_outbuf_perf_store_x(perf); evas_software_xcb_outbuf_perf_store_x(perf);
} }