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:
parent
b0056a5907
commit
613e9cb66d
1 changed files with 1 additions and 1 deletions
2
blur.c
2
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue