jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f6804ac1c683c561cc1c2ffab3d316c41348e275
commit f6804ac1c683c561cc1c2ffab3d316c41348e275 Author: Jaehyun Cho <[email protected]> Date: Fri Dec 11 16:58:55 2015 +0900 Draw: Fix compile error by removing duplicate definition. --- src/static_libs/draw/draw_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static_libs/draw/draw_private.h b/src/static_libs/draw/draw_private.h index cae3b19..c07d00a 100644 --- a/src/static_libs/draw/draw_private.h +++ b/src/static_libs/draw/draw_private.h @@ -33,8 +33,8 @@ alpha_inverse(uint32_t color) return A_VAL(&color); } -RGBA_Comp_Func_Solid func_for_mode_solid[EFL_GFX_RENDER_OP_LAST]; -RGBA_Comp_Func func_for_mode[EFL_GFX_RENDER_OP_LAST]; +extern RGBA_Comp_Func_Solid func_for_mode_solid[EFL_GFX_RENDER_OP_LAST]; +extern RGBA_Comp_Func func_for_mode[EFL_GFX_RENDER_OP_LAST]; void efl_draw_sse2_init(void); void efl_draw_neon_init(void); --
