evas drm engines: Fix variable type for output

We already include the Ecore_Drm2 header for these engines, so there
is no need for the 'output' field to be a void pointer here.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2018-02-06 10:58:58 -05:00
parent 32d32d402f
commit af2960df0b
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ typedef struct _Evas_Engine_Info_Drm
int depth, bpp;
unsigned int format, rotation;
void *output;
Ecore_Drm2_Output *output;
Eina_Bool alpha : 1;
Eina_Bool vsync : 1;
} info;

View File

@ -23,7 +23,7 @@ struct _Evas_Engine_Info_GL_Drm
unsigned int rotation, depth;
unsigned int format, flags;
void *output;
Ecore_Drm2_Output *output;
Eina_Bool destination_alpha : 1;
Eina_Bool vsync : 1;