Evas TGV: Fix compilation with BUILD_NEON

The TGV loader is an Evas_Loader, not part of evas itself
(eg. in cserve), so we can't use evas functions from there.
eina_cpu provides appropriate CPU features detection.
This commit is contained in:
Jean-Philippe Andre 2014-07-08 11:42:26 +09:00
parent 48bcf182b4
commit 6deda1a722
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ evas_image_load_file_data_tgv(void *loader_data,
if (!plane)
{
#ifdef BUILD_NEON
if (evas_common_cpu_has_feature(CPU_FEATURE_NEON))
if (eina_cpu_features_get() & EINA_CPU_NEON)
{
uint32_t *dst = &p[current_etc.x - 1 + (current_etc.y - 1) * master.w];
uint32_t *src = &temporary[offset_x + offset_y * 4];