get rid of unused e_pixmap parameter of ELOG
[platform/core/uifw/e-mod-tizen-effect.git] / src / e_mod_effect_rotation.c
index 7913edf..889cb3c 100644 (file)
@@ -86,7 +86,7 @@ _rotation_effect_ready_send(E_Zone *zone)
    ev->zone = zone;
    ecore_event_add(E_EVENT_ZONE_ROTATION_EFFECT_READY, ev, _rotation_effect_event_free, NULL);
 
-   EFFINF("Rotation Effect Event Ready", NULL, NULL);
+   EFFINF("Rotation Effect Event Ready", NULL);
 }
 
 static void
@@ -100,7 +100,7 @@ _rotation_effect_cancel_send(E_Zone *zone)
    ev->zone = zone;
    ecore_event_add(E_EVENT_ZONE_ROTATION_EFFECT_CANCEL, ev, _rotation_effect_event_free, NULL);
 
-   EFFINF("Rotation Effect Event Cancel", NULL, NULL);
+   EFFINF("Rotation Effect Event Cancel", NULL);
 }
 
 static void
@@ -114,7 +114,7 @@ _rotation_effect_done_send(E_Zone *zone)
    ev->zone = zone;
    ecore_event_add(E_EVENT_ZONE_ROTATION_EFFECT_DONE, ev, _rotation_effect_event_free, NULL);
 
-   EFFINF("Rotation Effect Event Done", NULL, NULL);
+   EFFINF("Rotation Effect Event Done", NULL);
 }
 
 static Eina_Bool
@@ -453,7 +453,7 @@ _rotation_effect_object_create(Evas_Object *o)
           goto fail;
 
         EFFINF("Rotation EFFECT Object Created E_Client:%p",
-               NULL, NULL, ec);
+               NULL, ec);
 
         eobj->img = img;
         return eobj;
@@ -483,7 +483,7 @@ _rotation_effect_object_create(Evas_Object *o)
         eobj->img = img;
 
         EFFINF("Rotation EFFECT Object Created Object:%p",
-               NULL, NULL, o);
+               NULL, o);
 
         return eobj;
      }
@@ -555,7 +555,7 @@ _rotation_effect_begin_create(Rotation_Effect *effect, Eina_List *targets, E_Des
 
    e_desk_smart_member_add(desk, ctx_begin->layout);
 
-   EFFINF("Rotation Begin Created", NULL, NULL);
+   EFFINF("Rotation Begin Created", NULL);
 
    int diff = effect->zone->rot.prev - effect->zone->rot.curr;
    if (diff == 270) diff = - 90;
@@ -614,7 +614,7 @@ _rotation_effect_end_create(Rotation_Effect *effect, Eina_List *targets, E_Desk
 
    e_desk_smart_member_add(desk, ctx_end->layout);
 
-   EFFINF("Rotation End Created", NULL, NULL);
+   EFFINF("Rotation End Created", NULL);
 
    int diff = _rotation_zone->curr_angle - _rotation_zone->prev_angle;
    if (diff == 270) diff = - 90;
@@ -632,7 +632,7 @@ _rotation_effect_animator_begin_context_free(Rotation_Effect_Begin_Context *ctx_
 
    if (!ctx_begin) return;
 
-   EFFINF("Rotation Begin Free", NULL, NULL);
+   EFFINF("Rotation Begin Free", NULL);
 
    if (ctx_begin->layout)
      evas_object_hide(ctx_begin->layout);
@@ -656,7 +656,7 @@ _rotation_effect_animator_end_context_free(Rotation_Effect_End_Context *ctx_end)
 
    if (!ctx_end) return;
 
-   EFFINF("Rotation End Free", NULL, NULL);
+   EFFINF("Rotation End Free", NULL);
 
    if (ctx_end->layout)
      evas_object_hide(ctx_end->layout);
@@ -678,7 +678,7 @@ _rotation_effect_clear(Rotation_Effect *effect)
 {
    if (!effect) return;
 
-   EFFINF("Rotation Effect Clear", NULL, NULL);
+   EFFINF("Rotation Effect Clear", NULL);
 
    effect->targets = eina_list_free(effect->targets);
    effect->waiting_list = eina_list_free(effect->waiting_list);
@@ -784,7 +784,7 @@ _norender_timer_timeout(void *data)
    effect->norender_timer = NULL;
    effect->norender = EINA_FALSE;
 
-   EFFINF("EFF norender pop - timeout", NULL, NULL);
+   EFFINF("EFF norender pop - timeout", NULL);
 
    e_comp_canvas_norender_pop();
 
@@ -808,12 +808,12 @@ _rotation_effect_start(Rotation_Effect *effect)
         effect->norender_timer = NULL;
         effect->norender = EINA_FALSE;
 
-        EFFINF("EFF norender pop - start", NULL, NULL);
+        EFFINF("EFF norender pop - start", NULL);
 
         e_comp_canvas_norender_pop();
      }
 
-   EFFINF("Rotation Effect Start", NULL, NULL);
+   EFFINF("Rotation Effect Start", NULL);
 
    effect->running = EINA_TRUE;
 
@@ -848,7 +848,7 @@ _rotation_effect_animator_begin_prepare(Rotation_Effect *effect, E_Desk *desk)
         return;
      }
 
-   EFFINF("Rotation Begin Prepared", NULL, NULL);
+   EFFINF("Rotation Begin Prepared", NULL);
 
    /* add hwc override */
    e_comp_override_add();
@@ -859,7 +859,7 @@ _rotation_effect_animator_begin_prepare(Rotation_Effect *effect, E_Desk *desk)
     */
    if (!effect->norender)
      {
-        EFFINF("EFF norender push ", NULL, NULL);
+        EFFINF("EFF norender push ", NULL);
 
         e_comp_canvas_norender_push();
 
@@ -889,7 +889,7 @@ _rotation_effect_animator_end_prepare(Rotation_Effect *effect, E_Desk *desk)
    effect->ctx_end = _rotation_effect_end_create(effect, effect->targets, desk);
    if (!effect->ctx_end) return;
 
-   EFFINF("Rotation End Prepared", NULL, NULL);
+   EFFINF("Rotation End Prepared", NULL);
 
    effect->targets = eina_list_free(effect->targets);
 }
@@ -909,7 +909,7 @@ _rotation_effect_cb_zone_rotation_begin(void *data, int type, void *event)
    if (!zone) return ECORE_CALLBACK_PASS_ON;
 
    EFFINF("Zone rotation begin zone(prev:%d cur:%d)",
-          NULL, NULL,
+          NULL,
           zone->rot.prev, zone->rot.curr);
 
    if (zone->rot.prev == zone->rot.curr) return ECORE_CALLBACK_PASS_ON;
@@ -940,7 +940,7 @@ _rotation_effect_cb_zone_rotation_end(void *data, int type, void *event)
    zone = ev->zone;
    if (!zone) return ECORE_CALLBACK_PASS_ON;
 
-   EFFINF("Zone rotation end angle(prev:%d cur:%d)", NULL, NULL,
+   EFFINF("Zone rotation end angle(prev:%d cur:%d)", NULL,
           zone->rot.prev, zone->rot.curr);
 
    if (effect->running) return ECORE_CALLBACK_PASS_ON;
@@ -976,7 +976,7 @@ _rotation_effect_cb_zone_rotation_cancel(void *data, int type, void *event)
    effect = (Rotation_Effect *)data;
    if (!effect) return ECORE_CALLBACK_PASS_ON;
 
-   EFFINF("Zone Rotation Cancelled", NULL, NULL);
+   EFFINF("Zone Rotation Cancelled", NULL);
 
    if (effect->running) return ECORE_CALLBACK_PASS_ON;
    if (effect->targets) _rotation_effect_cancel_send(zone);
@@ -989,7 +989,7 @@ _rotation_effect_cb_zone_rotation_cancel(void *data, int type, void *event)
         effect->norender_timer = NULL;
         effect->norender = EINA_FALSE;
 
-        EFFINF("EFF norender pop - cancel", NULL, NULL);
+        EFFINF("EFF norender pop - cancel", NULL);
 
         e_comp_canvas_norender_pop();
      }
@@ -1104,7 +1104,7 @@ _rotation_effect_free(Rotation_Effect *effect)
    effect->norender_timer = NULL;
    if (effect->norender)
      {
-        EFFINF("EFF norender pop - free", NULL, NULL);
+        EFFINF("EFF norender pop - free", NULL);
 
         e_comp_canvas_norender_pop();
      }