From: Changyeon Lee Date: Mon, 17 Oct 2022 03:29:51 +0000 (+0900) Subject: e_hwc_window: remove error log in case not implemented case X-Git-Tag: accepted/tizen/unified/20221102.172739~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1062558a78bd3d51d40a4fe209350e168d0447d;p=platform%2Fupstream%2Fenlightenment.git e_hwc_window: remove error log in case not implemented case Change-Id: I62666c3542ea0f981b1232f9c9ad8845cd8df766 --- diff --git a/src/bin/e_hwc_window.c b/src/bin/e_hwc_window.c index c2f9bd649e..ef00eaf595 100644 --- a/src/bin/e_hwc_window.c +++ b/src/bin/e_hwc_window.c @@ -1366,6 +1366,13 @@ _e_hwc_window_info_set(E_Hwc_Window *hwc_window, tdm_hwc_window_info *hwc_win_in EINA_SAFETY_ON_NULL_RETURN_VAL(hwc_window->hwc, EINA_FALSE); error = tdm_hwc_set_client_target_buffer_info(hwc_window->hwc->thwc, &hwc_window->current.info); + if (error == TDM_ERROR_NOT_IMPLEMENTED) + { + EHWINF("tdm_hwc_set_client_target_buffer_info not implement", + hwc_window->ec, hwc_window->hwc, hwc_window); + return EINA_TRUE; + } + EINA_SAFETY_ON_TRUE_RETURN_VAL(error != TDM_ERROR_NONE, EINA_FALSE); } else