hwc: add the API function tdm_output_hwc_create_video_window instead of TDM_COMPOSITI...
[platform/core/uifw/libtdm.git] / include / tdm.h
index 56d7dea..77866d5 100644 (file)
@@ -62,7 +62,6 @@ extern "C" {
 typedef enum {
        TDM_DISPLAY_CAPABILITY_PP       = (1 << 0), /**< if hardware supports pp operation */
        TDM_DISPLAY_CAPABILITY_CAPTURE  = (1 << 1), /**< if hardware supports capture operation */
-       TDM_DISPLAY_CAPABILITY_HWC      = (1 << 2), /**< if hardware supports hwc operation @since 2.0.0*/
 } tdm_display_capability;
 
 /**
@@ -580,6 +579,16 @@ tdm_hwc_window *
 tdm_output_hwc_create_window(tdm_output *output, tdm_error *error);
 
 /**
+ * @brief Creates a new video window on the given output.
+ * @param[in] output A output object
+ * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
+ * @return A created window object
+ * @since 2.0.0
+ */
+tdm_hwc_window *
+tdm_output_hwc_create_video_window(tdm_output *output, tdm_error *error);
+
+/**
  * @brief Destroys the given window.
  * @param[in] output A output object
  * @param[in] window the pointer of the window to destroy
@@ -716,6 +725,17 @@ tbm_surface_queue_h
 tdm_output_hwc_get_target_buffer_queue(tdm_output *output, tdm_error *error);
 
 /**
+ * @brief Get the supported format array for video hwc windows of a output object.
+ * @param[in] output A output object
+ * @param[out] formats The available format array
+ * @param[out] count The count of formats
+ * @return #TDM_ERROR_NONE if success. Otherwise, error value.
+ */
+tdm_error
+tdm_output_hwc_get_video_supported_formats(tdm_layer *layer, const tbm_format **formats,
+                                                               int *count);
+
+/**
  * @brief Get the capabilities of a layer object.
  * @param[in] layer A layer object
  * @param[out] capabilities The capabilities of a layer object
@@ -1040,28 +1060,48 @@ tdm_error
 tdm_hwc_window_unset_flags(tdm_hwc_window *hwc_window, tdm_hwc_window_flag flags);
 
 /**
- * @brief Get the window video capability
- * @param[in] hwc_window A window object
- * @param[out] video_capability A hwc window video capability
+ * @brief Get the available property array  of a video hwc window object.
+ * @param[in] hwc window A video hwc window object
+ * @param[out] props The available property array
+ * @param[out] count The count of properties
  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
- * @since 2.0.0
  */
 tdm_error
-tdm_hwc_window_video_get_capability(tdm_hwc_window *hwc_window,
-                                                                       tdm_hwc_window_video_capability *video_capability);
+tdm_hwc_window_video_get_available_properties(tdm_hwc_window *hwc_window,
+                                                                 const tdm_prop **props, int *count);
+
+/**
+ * @brief Get the property which has a given id.
+ * @param[in] hwc window A video hwc window object
+ * @param[in] id The property id
+ * @param[out] value The value
+ * @return #TDM_ERROR_NONE if success. Otherwise, error value.
+ */
+tdm_error
+tdm_hwc_window_video_get_property(tdm_hwc_window *hwc_window, uint32_t id,
+                                                                 tdm_value *value);
+
+/**
+ * @brief Set the property which has a given id.
+ * @param[in] hwc window  A video hwc window object
+ * @param[in] id The property id
+ * @param[in] value The value
+ * @return #TDM_ERROR_NONE if success. Otherwise, error value.
+ */
+tdm_error
+tdm_hwc_window_video_set_property(tdm_hwc_window *hwc_window, uint32_t id,
+                                                                 tdm_value value);
 
 /**
- * @brief Get the window video supported format
+ * @brief Get the window video capability
  * @param[in] hwc_window A window object
- * @param[out] formats A hwc window supported formats
- * @param[out] count A number of the hwc window supported formats
+ * @param[out] video_capability A hwc window video capability
  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
  * @since 2.0.0
  */
 tdm_error
-tdm_hwc_window_video_get_supported_format(tdm_hwc_window *hwc_window,
-                                                                                 const tbm_format **formats,
-                                                                                 int *count);
+tdm_hwc_window_video_get_capability(tdm_hwc_window *hwc_window,
+                                                                       tdm_hwc_window_video_capability *video_capability);
 
 /**
  * @brief Destroy a pp object