Package version up to 2.7.1
[platform/core/uifw/libtdm.git] / doc / tdm_doc.h
index 1abca27..1d83a7d 100644 (file)
@@ -9,7 +9,7 @@
  *          Taeheon Kim <th908.kim@samsung.com>,
  *          YoungJun Cho <yj44.cho@samsung.com>,
  *          SooChan Lim <sc1.lim@samsung.com>,
- *          Boram Park <sc1.lim@samsung.com>
+ *          Boram Park <boram1288.park@samsung.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the
@@ -39,7 +39,7 @@
 /**
  * @mainpage TDM
  * @author     Boram Park, boram1288.park@samsung.com
- * @version    1.2.0
+ * @version    1.16.0
  * @par Introduction
  * TDM stands for Tizen Display Manager. It's the display HAL layer for tizen
  * display server. It offers the frontend APIs(@ref tdm.h) for a frontend user
@@ -56,7 +56,7 @@
  * and #tdm_layer_create_capture if available.\n
  * \n
  * All changes of output/layer/pp/capture objects are applied when committed.
- * See #tdm_output_commit, #tdm_pp_commit and #tdm_capture_commit.
+ * See #tdm_output_commit, #tdm_layer_commit, #tdm_pp_commit and #tdm_capture_commit.
  * \n
  * @par Buffer management
  * TDM has its own buffer release mechanism to let an user know when a TDM buffer
@@ -89,7 +89,7 @@
  *      ...
  *
  *      memset(&drm_func_display, 0, sizeof(drm_func_display));
- *      drm_func_display.display_get_capabilitiy = drm_display_get_capabilitiy;
+ *      drm_func_display.display_get_capability = drm_display_get_capability;
  *      ...
  *      ret = tdm_backend_register_func_display(dpy, &drm_func_display);
  *      if (ret != TDM_ERROR_NONE)
  $ git clone ssh://{user_id}@review.tizen.org:29418/platform/core/uifw/libtdm-drm
  * @endcode
  * \n
- * After loading a TDM backend module, TDM will call @b display_get_capabilitiy(),
+ * After loading a TDM backend module, TDM will call @b display_get_capability(),
  * @b display_get_outputs(), @b output_get_capability(), @b output_get_layers(),
  * @b layer_get_capability() functions to get the hardware information. That is,
  * a TDM backend module @b SHOULD implement these 5 functions basically.\n