ecore-drm2: return supported rotations if not using hardware

If we are Not using Atomic/Hardware support for output rotations, we
should return all available rotations as these will still work in
software mode.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2018-01-09 12:06:53 -05:00
parent 4aeca75cff
commit 2ac8458238
1 changed files with 13 additions and 6 deletions

View File

@ -1473,17 +1473,24 @@ EAPI int
ecore_drm2_output_supported_rotations_get(Ecore_Drm2_Output *output)
{
int ret = -1;
Eina_List *l;
Ecore_Drm2_Plane_State *pstate;
EINA_SAFETY_ON_NULL_RETURN_VAL(output, -1);
EINA_LIST_FOREACH(output->plane_states, l, pstate)
if (_ecore_drm2_use_atomic)
{
if (pstate->type.value != DRM_PLANE_TYPE_PRIMARY) continue;
ret = pstate->supported_rotations;
break;
Ecore_Drm2_Plane_State *pstate;
Eina_List *l;
EINA_LIST_FOREACH(output->plane_states, l, pstate)
{
if (pstate->type.value != DRM_PLANE_TYPE_PRIMARY) continue;
ret = pstate->supported_rotations;
break;
}
}
else
return (ECORE_DRM2_ROTATION_NORMAL | ECORE_DRM2_ROTATION_90 |
ECORE_DRM2_ROTATION_180 | ECORE_DRM2_ROTATION_270);
return ret;
}