#ifdef TILE_ROTATE
#ifdef BUILD_NEON
-#define ROT90_QUAD_COPY_LOOP \
+#define ROT90_QUAD_COPY_LOOP(pix_type) \
if (evas_common_cpu_has_feature(CPU_FEATURE_NEON)) \
{ \
if((w%4) == 0) \
} \
} \
else
-#define ROT270_QUAD_COPY_LOOP \
+#define ROT270_QUAD_COPY_LOOP(pix_type) \
if (evas_common_cpu_has_feature(CPU_FEATURE_NEON)) \
+ { \
if((w%4) == 0) \
{ \
int klght = 4 * src_stride; \
} \
else
#else
-#define ROT90_QUAD_COPY_LOOP
-#define ROT270_QUAD_COPY_LOOP
+#define ROT90_QUAD_COPY_LOOP(pix_type)
+#define ROT270_QUAD_COPY_LOOP(pix_type)
#endif
#define FAST_SIMPLE_ROTATE(suffix, pix_type) \
static void \
int h) \
{ \
int x, y; \
- ROT90_QUAD_COPY_LOOP \
+ ROT90_QUAD_COPY_LOOP(pix_type) \
{ \
for (y = 0; y < h; y++) \
{ \
int h) \
{ \
int x, y; \
- ROT270_QUAD_COPY_LOOP \
+ ROT270_QUAD_COPY_LOOP(pix_type) \
{ \
for(y = 0; y < h; y++) \
{ \