e_hwc_window: fix the log
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 10 Dec 2024 09:15:09 +0000 (18:15 +0900)
committerJunseok Kim <juns.kim@samsung.com>
Fri, 13 Dec 2024 05:15:52 +0000 (14:15 +0900)
Change-Id: I16d11d7a32a1527cef68f7e883a5078c843b4ce1

src/bin/displaymgr/e_hwc_windows.c
src/bin/displaymgr/e_output.c

index 07be673d6841bfa4a03d7a113f7138e506498ac4..c4e01667e87c5391a80b3e9dce1360409d2a9be4 100644 (file)
@@ -2856,7 +2856,7 @@ e_hwc_windows_render(E_Hwc *hwc)
 
    if (e_hwc_norender_get(hwc) > 0)
      {
-        EHWSTRACE("NoRender get. Do not ecore_evas_manual_render", NULL, hwc);
+        EHWSTRACE("NoRender get. Do not render", NULL, hwc);
         return EINA_TRUE;
      }
 
@@ -2869,7 +2869,7 @@ e_hwc_windows_render(E_Hwc *hwc)
           {
              egl_error = eglGetError();
              if (egl_error != EGL_SUCCESS)
-               ERR("EGL Error:%d in ecore_evas_manual_render", egl_error);
+               ERR("EGL Error:%d in canvas_render", egl_error);
           }
         target_hwc_window->is_rendering = EINA_FALSE;
         TRACE_DS_END();
index 8daffdf324db554c652ff3f366c4738e531c63e2..6df485e61d7a502737c3e0cda5fc2683fc139597 100644 (file)
@@ -593,7 +593,7 @@ _e_output_zoom_rotate(E_Output *output)
    if (!_e_output_zoom_touch_set(output))
      EOERR("fail _e_output_zoom_touch_set", output);
 
-   /* update the ecore_evas */
+   /* update the render */
    if (e_hwc_windows_pp_commit_possible_check(output->hwc))
      _e_output_render_update(output);
 }
@@ -2702,7 +2702,7 @@ e_output_zoom_set(E_Output *output, double zoomx, double zoomy, int cx, int cy)
         return EINA_FALSE;
      }
 
-   /* update the ecore_evas */
+   /* update the render */
    if (e_hwc_windows_pp_commit_possible_check(output->hwc))
      _e_output_render_update(output);
 
@@ -2780,7 +2780,7 @@ e_output_zoom_unset(E_Output *output)
    output->zoom_conf.rect_touch.w = 0;
    output->zoom_conf.rect_touch.h = 0;
 
-   /* update the ecore_evas */
+   /* update the render */
    _e_output_render_update(output);
 
    ELOGF("ZOOM", "e_output_zoom_unset: output:%s", NULL, output->id);
@@ -3176,7 +3176,7 @@ e_output_mirror_set(E_Output *output, E_Output *src_output)
    _e_output_display_mode_set(output, E_OUTPUT_DISPLAY_MODE_MIRROR);
    output->external_set = EINA_TRUE;
 
-   /* update the ecore_evas of the src_output */
+   /* update the render of the src_output */
    _e_output_force_render_set(src_output);
 
    EOINF("e_output_mirror_set done: E_OUTPUT_DISPLAY_MODE_MIRROR", output);
@@ -3198,7 +3198,7 @@ e_output_mirror_unset(E_Output *output)
 
    if (e_output_display_mode_get(output) == E_OUTPUT_DISPLAY_MODE_MIRROR)
      {
-        /* update the ecore_evas of the src_output */
+        /* update the render of the src_output */
         _e_output_render_update(src_output);
         output->external_set = EINA_FALSE;
         _e_output_display_mode_set(output, E_OUTPUT_DISPLAY_MODE_NONE);