1
0
Fork 0
mirror of https://github.com/Raymo111/i3lock-color.git synced 2025-02-24 16:06:26 -05:00

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

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