sw_engine: calling avxRasterTranslucentRect instead of its c version

For avx vector support the avxRasterTranslucentRect should be called
instead of cRasterTranslucentRect (mischanged in 01e1fec367).
This commit is contained in:
Mira Grudzinska 2021-08-31 15:07:57 +02:00 committed by Mira Grudzinska
parent d7cb87971b
commit 3a54c5e219

View file

@ -174,7 +174,7 @@ static bool _rasterTranslucentRect(SwSurface* surface, const SwBBox& region, uin
}
#if defined(THORVG_AVX_VECTOR_SUPPORT)
return cRasterTranslucentRect(surface, region, color);
return avxRasterTranslucentRect(surface, region, color);
#elif defined(THORVG_NEON_VECTOR_SUPPORT)
return neonRasterTranslucentRect(surface, region, color);
#else