diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-05-04 14:06:31 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-05-07 14:39:45 -0400 |
commit | 2606735b394b9cfbf14f46edfe413c76aa872d7b (patch) | |
tree | 22cbc3705123521d355ae6f8622d171ee0652c4f /src/lib/ecore_drm/Ecore_Drm.h | |
parent | 29362040b2a01e731d0dd7e3f52300a1d5ad8836 (diff) |
ecore-drm: Add API function to return the name of an output
Summary: This adds a new API function to turn the name of a given Ecore_Drm_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 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/ecore_drm/Ecore_Drm.h b/src/lib/ecore_drm/Ecore_Drm.h index 157d0b8f18..54e252e4e0 100644 --- a/src/lib/ecore_drm/Ecore_Drm.h +++ b/src/lib/ecore_drm/Ecore_Drm.h | |||
@@ -709,6 +709,19 @@ EAPI Eina_Stringshare *ecore_drm_output_model_get(Ecore_Drm_Output *output); | |||
709 | EAPI Eina_Stringshare *ecore_drm_output_make_get(Ecore_Drm_Output *output); | 709 | EAPI Eina_Stringshare *ecore_drm_output_make_get(Ecore_Drm_Output *output); |
710 | 710 | ||
711 | /** | 711 | /** |
712 | * Get the name of Ecore_Drm_Output | ||
713 | * | ||
714 | * This function will give the name of Ecore_Drm_Output | ||
715 | * | ||
716 | * @param output The Ecore_Drm_Output to get name for | ||
717 | * @return The name. Caller should free this return. | ||
718 | * | ||
719 | * @ingroup Ecore_Drm_Output_Group | ||
720 | * @since 1.15 | ||
721 | */ | ||
722 | EAPI char *ecore_drm_output_name_get(Ecore_Drm_Output *output); | ||
723 | |||
724 | /** | ||
712 | * Set the dpms level of an Ecore_Drm_Output | 725 | * Set the dpms level of an Ecore_Drm_Output |
713 | * | 726 | * |
714 | * This function will set the DPMS level of an Ecore_Drm_Output | 727 | * This function will set the DPMS level of an Ecore_Drm_Output |