From: subhransu mohanty Date: Tue, 31 Jul 2018 08:10:30 +0000 (+0900) Subject: lottie/render: fixed rendering backend issue for arm. X-Git-Tag: submit/tizen/20180917.042405~151 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14f66bb3b581563e33aaa9460462aa3fc2c01682;hp=74650552891d3a63924e2374dd44aad21a0bcd8c;p=platform%2Fcore%2Fuifw%2Flottie-player.git lottie/render: fixed rendering backend issue for arm. Change-Id: I23b2f24b0ed995cb76ba554228e4ff72677806bd --- diff --git a/src/vector/vdrawhelper.cpp b/src/vector/vdrawhelper.cpp index ce07aac..b4be4c7 100644 --- a/src/vector/vdrawhelper.cpp +++ b/src/vector/vdrawhelper.cpp @@ -630,7 +630,7 @@ void VSpanData::updateSpanFunc() } } -#if !defined(__SSE2__) && !defined(__ARM_NEON__) +#if !defined(__SSE2__) void memfill32(uint32_t *dest, uint32_t value, int length) { int n; @@ -677,15 +677,15 @@ void vInitDrawhelperFunctions() #if defined(__ARM_NEON__) // update fast path for NEON - extern void comp_func_solid_SourceOver_neon( - uint32_t * dest, int length, uint32_t color, uint32_t const_alpha); - extern void comp_func_solid_Source_neon( - uint32_t * dest, int length, uint32_t color, uint32_t const_alpha); - - COMP_functionForModeSolid_C[VPainter::CompModeSrc] = - comp_func_solid_Source_neon; - COMP_functionForModeSolid_C[VPainter::CompModeSrcOver] = - comp_func_solid_SourceOver_neon; +// extern void comp_func_solid_SourceOver_neon( +// uint32_t * dest, int length, uint32_t color, uint32_t const_alpha); +// extern void comp_func_solid_Source_neon( +// uint32_t * dest, int length, uint32_t color, uint32_t const_alpha); + +// COMP_functionForModeSolid_C[VPainter::CompModeSrc] = +// comp_func_solid_Source_neon; +// COMP_functionForModeSolid_C[VPainter::CompModeSrcOver] = +// comp_func_solid_SourceOver_neon; #endif #if defined(__SSE2__)