diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-05-04 15:03:47 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-05-07 14:39:46 -0400 |
commit | 34664306a99100cdcebcba9b163d2d28ee3d1350 (patch) | |
tree | 115d70cc48d80ccb2bcd9726f8849ae530271554 /src/lib/ecore_drm/Ecore_Drm.h | |
parent | 130ad6d60fa7e67c50db7aeffa3fab37b92de404 (diff) |
ecore-drm: Add API function to return the edid of a given output
Summary: This adds a new API function to return the EDID string of a
given output.
@feature
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_drm/Ecore_Drm.h')
-rw-r--r-- | src/lib/ecore_drm/Ecore_Drm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/ecore_drm/Ecore_Drm.h b/src/lib/ecore_drm/Ecore_Drm.h index d0a2c3673a..e2b79a0567 100644 --- a/src/lib/ecore_drm/Ecore_Drm.h +++ b/src/lib/ecore_drm/Ecore_Drm.h | |||
@@ -824,6 +824,18 @@ EAPI unsigned int ecore_drm_output_connector_type_get(Ecore_Drm_Output *output); | |||
824 | */ | 824 | */ |
825 | EAPI Eina_Bool ecore_drm_output_backlight_get(Ecore_Drm_Output *output); | 825 | EAPI Eina_Bool ecore_drm_output_backlight_get(Ecore_Drm_Output *output); |
826 | 826 | ||
827 | /** | ||
828 | * Get the edid of a given output | ||
829 | * | ||
830 | * @param output The Ecore_Drm_Output to get the backlight of | ||
831 | * | ||
832 | * @return A string representing the edid | ||
833 | * | ||
834 | * @ingroup Ecore_Drm_Output_Group | ||
835 | * @since 1.15 | ||
836 | */ | ||
837 | EAPI char *ecore_drm_output_edid_get(Ecore_Drm_Output *output); | ||
838 | |||
827 | #ifdef __cplusplus | 839 | #ifdef __cplusplus |
828 | } | 840 | } |
829 | #endif | 841 | #endif |