From: SooChan Lim Date: Wed, 19 Sep 2018 10:51:40 +0000 (+0900) Subject: add temporary code to prevent the build break X-Git-Tag: accepted/tizen/unified/20180921.042507^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Flibtdm.git;a=commitdiff_plain;h=477497ef5c7d0812398b33de2bc5824638ba4a48 add temporary code to prevent the build break this code will be reverted later... Change-Id: I4b0f88519d705c64fe368d6429a4765cf0115541 --- diff --git a/include/tdm.h b/include/tdm.h index 42837ab..5f14a4c 100644 --- a/include/tdm.h +++ b/include/tdm.h @@ -1107,6 +1107,14 @@ tdm_hwc_window_set_property(tdm_hwc_window *hwc_window, uint32_t id, tdm_value v tdm_error tdm_hwc_window_get_constraints(tdm_hwc_window *hwc_window, int *constraints); +// TODO : this will be removed... +#define TDM_PREPARATION_BUFFER_QUEUE 1000 +#define TDM_PREPARATION_NONE 1001 + +tdm_error +tdm_hwc_window_get_preparation_types(tdm_hwc_window *hwc_window, int *preparation_types); +// TODO + /** * @brief Destroy a pp object * @param[in] pp A pp object diff --git a/src/tdm_hwc_window.c b/src/tdm_hwc_window.c index ce04c51..71e0f01 100644 --- a/src/tdm_hwc_window.c +++ b/src/tdm_hwc_window.c @@ -467,4 +467,11 @@ tdm_hwc_window_get_constraints(tdm_hwc_window *hwc_window, int *constraints) return ret; } + +// TODO : this will be removed... +tdm_error +tdm_hwc_window_get_preparation_types(tdm_hwc_window *hwc_window, int *preparation_types) +{ + return TDM_ERROR_NONE; +} /* LCOV_EXCL_STOP */ \ No newline at end of file