Fix build after EFL_CANVAS_RECTANGLE_CLASS change

devs/lauromoura/reporting
Daniel Hirt 7 years ago
parent 74007f65bc
commit e79517e490
  1. 2
      src/bin/rect_blend.c
  2. 2
      src/bin/rect_blend_few.c
  3. 2
      src/bin/rect_blend_pow2.c
  4. 2
      src/bin/rect_blend_pow2_few.c
  5. 2
      src/bin/rect_solid.c
  6. 2
      src/bin/rect_solid_few.c
  7. 4
      src/bin/ui.c

@ -26,7 +26,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = rnd()&0xff;
r = ((rnd()&0xff) * a) / 255;

@ -29,7 +29,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = rnd()&0xff;
r = ((rnd()&0xff) * a) / 255;

@ -26,7 +26,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = 256 - (1 << ((rnd() % 8) + 1));
if (a < 128) a = 128;

@ -29,7 +29,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = 256 - (1 << ((rnd() % 8) + 1));
if (a < 128) a = 128;

@ -26,7 +26,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = 0xff;
r = ((rnd()&0xff) * a) / 255;

@ -29,7 +29,7 @@ static void _setup(void)
{
int r, g, b, a;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
o_images[i] = o;
a = 0xff;
r = ((rnd()&0xff) * a) / 255;

@ -391,7 +391,7 @@ ui_setup(unsigned int ui_w, unsigned int ui_h)
win_w = ui_w;
win_h = ui_h;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
efl_gfx_position_set(o, 0, 0);
efl_gfx_size_set(o, win_w, win_h);
efl_gfx_color_set(o, 0, 0, 0, 0);
@ -401,7 +401,7 @@ ui_setup(unsigned int ui_w, unsigned int ui_h)
eo_event_callback_array_add(o, ui_callbacks(), NULL);
o_bg = o;
o = eo_add(EVAS_RECTANGLE_CLASS, evas);
o = eo_add(EFL_CANVAS_RECTANGLE_CLASS, evas);
efl_gfx_position_set(o, 0, 0);
efl_gfx_size_set(o, win_w, win_h);
efl_gfx_color_set(o, 255, 255, 255, 255);

Loading…
Cancel
Save