fix SSE version check

This commit is contained in:
Pandora 2017-12-06 12:25:04 -05:00
parent b0056a5907
commit 613e9cb66d
No known key found for this signature in database
GPG Key ID: 55DB77C2A03E1EF5
1 changed files with 1 additions and 1 deletions

2
blur.c
View File

@ -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);