devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=af2960df0bc2fbf706c9a266977a28a6a073b338

commit af2960df0bc2fbf706c9a266977a28a6a073b338
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Tue Feb 6 10:58:58 2018 -0500

    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.mich...@samsung.com>
---
 src/modules/evas/engines/drm/Evas_Engine_Drm.h       | 2 +-
 src/modules/evas/engines/gl_drm/Evas_Engine_GL_Drm.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/evas/engines/drm/Evas_Engine_Drm.h 
b/src/modules/evas/engines/drm/Evas_Engine_Drm.h
index 2fcbc466f1..24d0fa41d5 100644
--- a/src/modules/evas/engines/drm/Evas_Engine_Drm.h
+++ b/src/modules/evas/engines/drm/Evas_Engine_Drm.h
@@ -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;
diff --git a/src/modules/evas/engines/gl_drm/Evas_Engine_GL_Drm.h 
b/src/modules/evas/engines/gl_drm/Evas_Engine_GL_Drm.h
index 5dd18545a7..d7a14fdafb 100644
--- a/src/modules/evas/engines/gl_drm/Evas_Engine_GL_Drm.h
+++ b/src/modules/evas/engines/gl_drm/Evas_Engine_GL_Drm.h
@@ -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;

-- 


Reply via email to