ecore-drm2: Add API to return current resolution of a given output

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-05-11 09:36:34 -04:00
parent 1eb85aab57
commit d08d7e18e3
2 changed files with 28 additions and 0 deletions

View File

@ -554,6 +554,19 @@ EAPI Eina_Bool ecore_drm2_output_cloned_get(Ecore_Drm2_Output *output);
*/
EAPI unsigned int ecore_drm2_output_connector_type_get(Ecore_Drm2_Output *output);
/**
* Get the current resolution of a given output
*
* @param output
* @param *w
* @param *h
* @param *refresh
*
* @ingroup Ecore_Drm2_Output_Group
* @since 1.18
*/
EAPI void ecore_drm2_output_resolution_get(Ecore_Drm2_Output *output, int *w, int *h, unsigned int *refresh);
/**
* @defgroup Ecore_Drm2_Fb_Group Drm framebuffer functions
*

View File

@ -1069,3 +1069,18 @@ ecore_drm2_output_connector_type_get(Ecore_Drm2_Output *output)
EINA_SAFETY_ON_NULL_RETURN_VAL(output, 0);
return output->conn_type;
}
EAPI void
ecore_drm2_output_resolution_get(Ecore_Drm2_Output *output, int *w, int *h, unsigned int *refresh)
{
if (w) *w = 0;
if (h) *h = 0;
if (refresh) *refresh = 0;
EINA_SAFETY_ON_NULL_RETURN(output);
EINA_SAFETY_ON_TRUE_RETURN(!output->current_mode);
if (w) *w = output->current_mode->width;
if (h) *h = output->current_mode->height;
if (refresh) *refresh = output->current_mode->refresh;
}