2016-10-14 22:06:43 -04:00
|
|
|
#ifndef _BLUR_H
|
|
|
|
#define _BLUR_H
|
|
|
|
|
2016-10-22 14:32:35 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
|
2017-02-15 11:22:06 +01:00
|
|
|
#define KERNEL_SIZE 7
|
|
|
|
#define SIGMA_AV 2
|
|
|
|
#define HALF_KERNEL KERNEL_SIZE / 2
|
|
|
|
|
2017-02-15 12:01:08 +01:00
|
|
|
void blur_image_surface(cairo_surface_t *surface, int sigma);
|
2016-11-11 18:45:20 +01:00
|
|
|
void blur_impl_horizontal_pass_sse2(uint32_t *src, uint32_t *dst, int width, int height);
|
2017-02-15 11:22:06 +01:00
|
|
|
void blur_impl_horizontal_pass_generic(uint32_t *src, uint32_t *dst, int width, int height);
|
2016-11-04 22:19:29 +01:00
|
|
|
|
2016-10-14 22:06:43 -04:00
|
|
|
#endif
|
|
|
|
|