#include "SkXfermode.h"
#include "SkXfermode_proccoeff.h"
+// Temporarily disable everything but SSE2: crbug.com/372232.
+#if 1
+static inline bool supports_simd(int minLevel) {
+ SkASSERT(SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2);
+ return minLevel <= SK_CPU_SSE_LEVEL_SSE2;
+}
+#else
+
#if defined(_MSC_VER) && defined(_WIN64)
#include <intrin.h>
#endif
}
}
+#endif // Temporarily disable everything but SSE2: crbug.com/372232.
+
////////////////////////////////////////////////////////////////////////////////
SK_CONF_DECLARE( bool, c_hqfilter_sse, "bitmap.filter.highQualitySSE", false, "Use SSE optimized version of high quality image filters");