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