commit 613e9cb66df0349c86ef2bf6f47c6e08e27d9852
parent b0056a5907876ab276dce9359db797560a73e618
Author: Pandora <Pandora@techfo.xyz>
Date: Wed, 6 Dec 2017 12:25:04 -0500
fix SSE version check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blur.c b/blur.c
@@ -66,7 +66,7 @@ blur_image_surface (cairo_surface_t *surface, int radius)
dst = (uint32_t*)cairo_image_surface_get_data (tmp);
-#ifdef __SSE4_1__
+#ifdef __SSE3__
blur_impl_ssse3(src, dst, width, height, 4.5);
#elif __SSE2__
blur_impl_sse2(src, dst, width, height, 4.5);