ecore_drm2: Remove next, current, pending from plane state

These will be output state eventually
This commit is contained in:
Derek Foreman 2017-04-27 15:45:07 -05:00
parent 308a11cfd6
commit aae1c50dd3
2 changed files with 0 additions and 2 deletions

View File

@ -104,7 +104,6 @@ out:
plane->state = pstate;
plane->type = pstate->type.value;
plane->current = fb;
DBG("FB %d assigned to Plane %d", fb->id, pstate->obj_id);
output->planes = eina_list_append(output->planes, plane);

View File

@ -710,7 +710,6 @@ struct _Ecore_Drm2_Fb
struct _Ecore_Drm2_Plane
{
int type;
Ecore_Drm2_Fb *current, *next, *pending;
Ecore_Drm2_Plane_State *state;
};