Remove some remnants of Symbian code in src/gui/painting
authorThiago Macieira <thiago.macieira@intel.com>
Fri, 30 Dec 2011 16:43:43 +0000 (14:43 -0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 3 May 2012 17:24:45 +0000 (19:24 +0200)
Those files don't exist anymore. They were removed in
d1a2b53aaf76f48e195260a415ca406fa1ef01a2.

Change-Id: Id20203c5671eec8bff74fb76b8baf6b2fecb7c5b
Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
src/gui/painting/qdrawhelper.cpp

index 17877b7..aaaf261 100644 (file)
@@ -55,9 +55,6 @@
 #include <private/qpaintengine_raster_p.h>
 #include <private/qpainter_p.h>
 #include <private/qdrawhelper_x86_p.h>
-#ifdef QT_HAVE_ARM_SIMD
-#include <private/qdrawhelper_arm_simd_p.h>
-#endif
 #include <private/qdrawhelper_neon_p.h>
 #ifdef QT_HAVE_MIPS_DSP
 #include <private/qdrawhelper_mips_dsp_p.h>
@@ -5875,12 +5872,7 @@ void qInitDrawhelperAsm()
     }
 #endif // IWMMXT
 
-#if defined(QT_HAVE_ARM_SIMD)
-    qBlendFunctions[QImage::Format_RGB32][QImage::Format_RGB32] = qt_blend_rgb32_on_rgb32_arm_simd;
-    qBlendFunctions[QImage::Format_ARGB32_Premultiplied][QImage::Format_RGB32] = qt_blend_rgb32_on_rgb32_arm_simd;
-    qBlendFunctions[QImage::Format_RGB32][QImage::Format_ARGB32_Premultiplied] = qt_blend_argb32_on_argb32_arm_simd;
-    qBlendFunctions[QImage::Format_ARGB32_Premultiplied][QImage::Format_ARGB32_Premultiplied] = qt_blend_argb32_on_argb32_arm_simd;
-#elif defined(QT_HAVE_NEON)
+#if defined(QT_HAVE_NEON)
     if (features & NEON) {
         qBlendFunctions[QImage::Format_RGB32][QImage::Format_RGB32] = qt_blend_rgb32_on_rgb32_neon;
         qBlendFunctions[QImage::Format_ARGB32_Premultiplied][QImage::Format_RGB32] = qt_blend_rgb32_on_rgb32_neon;