e_hwc_window: remove error log in case not implemented case 15/283115/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Mon, 17 Oct 2022 03:29:51 +0000 (12:29 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Tue, 18 Oct 2022 07:25:39 +0000 (16:25 +0900)
Change-Id: I62666c3542ea0f981b1232f9c9ad8845cd8df766

src/bin/e_hwc_window.c

index c2f9bd649e0b672cf02e7b85b0c921748c285e11..ef00eaf5958b510b8a64649f46b18ab902dc5496 100644 (file)
@@ -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