From 3114b5a1f77d0321f8c9974357de88055014772e Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Tue, 10 Dec 2024 18:15:09 +0900 Subject: [PATCH] e_hwc_window: fix the log Change-Id: I16d11d7a32a1527cef68f7e883a5078c843b4ce1 --- src/bin/displaymgr/e_hwc_windows.c | 4 ++-- src/bin/displaymgr/e_output.c | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/displaymgr/e_hwc_windows.c b/src/bin/displaymgr/e_hwc_windows.c index 07be673d68..c4e01667e8 100644 --- a/src/bin/displaymgr/e_hwc_windows.c +++ b/src/bin/displaymgr/e_hwc_windows.c @@ -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(); diff --git a/src/bin/displaymgr/e_output.c b/src/bin/displaymgr/e_output.c index 8daffdf324..6df485e61d 100644 --- a/src/bin/displaymgr/e_output.c +++ b/src/bin/displaymgr/e_output.c @@ -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); -- 2.34.1