expedite-cxx: Port last missing test.

This one passed for some reason, it was still in C.
This commit is contained in:
Savio Sena 2014-10-22 02:31:15 -02:00
parent 0afccbf4e1
commit d7cfdd0557
1 changed files with 18 additions and 17 deletions

View File

@ -19,23 +19,21 @@
static int done = 0; static int done = 0;
extern int win_w, win_h; extern int win_w, win_h;
/* private data */ /* private data */
static Evas_Object *text; static evas::text *text;
static const int MAX_BLUR = 100; static const int MAX_BLUR = 100;
/* setup */ /* setup */
static void _setup(void) static void _setup(void)
{ {
Evas_Object *o;
int w,h; int w,h;
evas::canvas canvas(::eo_ref(G_evas));
o = evas_object_text_add(G_evas); evas::text *o = new evas::text(efl::eo::parent = canvas);
evas_object_color_set(o, 0, 0, 0, 255); o->evas::object::color_set(0, 0, 0, 255);
evas_object_text_font_set(o, "Vera-Bold", 80); o->font_set("Vera-Bold", 80);
evas_object_text_text_set(o, "Font Effect"); o->text_set("Font Effect");
evas_object_show(o); o->visibility_set(true);
evas_object_geometry_get(o, NULL, NULL, &w, &h); o->evas::object::size_get(&w, &h);
evas_object_move(o, (win_w / 2) - (w / 2) - MAX_BLUR, (win_h / 2) - (h / 2) - MAX_BLUR); o->evas::object::position_set((win_w / 2) - (w / 2) - MAX_BLUR, (win_h / 2) - (h / 2) - MAX_BLUR);
text = o; text = o;
done = 0; done = 0;
@ -44,17 +42,20 @@ static void _setup(void)
/* cleanup */ /* cleanup */
static void _cleanup(void) static void _cleanup(void)
{ {
evas_object_del(text); text->visibility_set(false);
delete text;
} }
/* loop - do things */ /* loop - do things */
static void _loop(double t, int f) static void _loop(double t, int f)
{ {
char buf[256]; if (text)
char *str = "padding_set(%d);blur(%d,color=black);"; {
sprintf(buf, str, MAX_BLUR, ((f % MAX_BLUR) + 1)); char buf[256];
eo_do(text, evas_obj_text_filter_program_set(buf)); char *str = "padding_set(%d);blur(%d,color=black);";
sprintf(buf, str, MAX_BLUR, ((f % MAX_BLUR) + 1));
text->filter_program_set(buf);
}
FPS_STD(NAME); FPS_STD(NAME);
} }