hwc: add tdm_hwc_get_property 05/200405/1
authorSooChan Lim <sc1.lim@samsung.com>
Sun, 24 Feb 2019 05:41:20 +0000 (14:41 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Sun, 24 Feb 2019 05:41:20 +0000 (14:41 +0900)
The user can get the property on the hwc object.

Change-Id: I7ac159c31ddb7532f5e76308969f7e0dc8ae5620

include/tdm.h
include/tdm_backend.h
src/tdm_hwc.c

index 53aa771..71f7a1c 100644 (file)
@@ -1040,6 +1040,16 @@ tdm_error
 tdm_hwc_set_property(tdm_hwc *hwc, uint32_t id, tdm_value value);
 
 /**
+ * @brief Get the property which has a given id on the hwc object.
+ * @param[in] hwc A hwc object
+ * @param[in] id The property id
+ * @param[in] value The value of the propery id
+ * @return #TDM_ERROR_NONE if success. Otherwise, error value.
+ */
+tdm_error
+tdm_hwc_get_property(tdm_hwc *hwc, uint32_t id, tdm_value *value);
+
+/**
  * @brief Destroys the given window.
  * @param[in] window the pointer of the window to destroy
  * @since 2.0.0
index e89cd91..c5db80a 100644 (file)
@@ -937,6 +937,15 @@ typedef struct _tdm_func_hwc {
         * @return #TDM_ERROR_NONE if success. Otherwise, error value.
         */
        tdm_error (*hwc_set_property)(tdm_hwc *hwc, uint32_t id, tdm_value value);
+
+       /**
+        * @brief Get the property which has a given id on the hwc object.
+        * @param[in] hwc A hwc object
+        * @param[in] id The property id
+        * @param[in] value The value of the propery id
+        * @return #TDM_ERROR_NONE if success. Otherwise, error value.
+        */
+       tdm_error (*hwc_get_property)(tdm_hwc *hwc, uint32_t id, tdm_value *value);
 } tdm_func_hwc;
 
 /**
index b9029be..0589bc1 100644 (file)
@@ -634,3 +634,31 @@ tdm_hwc_set_property(tdm_hwc *hwc, uint32_t id, tdm_value value)
 
        return ret;
 }
+
+tdm_error
+tdm_hwc_get_property(tdm_hwc *hwc, uint32_t id, tdm_value *value)
+{
+       tdm_private_module *private_module;
+       tdm_func_hwc *func_hwc = NULL;
+
+       HWC_FUNC_ENTRY();
+
+       _pthread_mutex_lock(&private_display->lock);
+
+       private_module = private_hwc->private_module;
+       func_hwc = &private_module->func_hwc;
+
+       if (!func_hwc->hwc_get_property) {
+               /* LCOV_EXCL_START */
+               _pthread_mutex_unlock(&private_display->lock);
+               TDM_WRN("not implemented!!");
+               return TDM_ERROR_NOT_IMPLEMENTED;
+               /* LCOV_EXCL_STOP */
+       }
+
+       ret = func_hwc->hwc_get_property(private_hwc->hwc_backend, id, value);
+
+       _pthread_mutex_unlock(&private_display->lock);
+
+       return ret;
+}