From efcee548b2c0803c6730bc9ab075c986e4c1b11b Mon Sep 17 00:00:00 2001 From: Sebastian Frysztak Date: Wed, 15 Feb 2017 12:22:44 +0100 Subject: [PATCH] Properly detect SSE2 on 32-bit systems --- blur.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blur.c b/blur.c index f78f8cb..1838df4 100644 --- a/blur.c +++ b/blur.c @@ -82,7 +82,7 @@ blur_image_surface (cairo_surface_t *surface, int sigma) // instead of writing pixel src[x] to dst[x], // we write it to transposed location. // (to be exact: dst[height * current_column + current_row]) -#ifdef __x86_64__ +#ifdef __SSE2__ blur_impl_horizontal_pass_sse2(src, dst, width, height); blur_impl_horizontal_pass_sse2(dst, src, height, width); #else