tavli

diff src/image.h @ 23:3e6430028d54

slot highlghting
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 08 Jul 2015 02:31:36 +0300
parents c2a2069a49ec
children
line diff
     1.1 --- a/src/image.h	Tue Jul 07 21:56:37 2015 +0300
     1.2 +++ b/src/image.h	Wed Jul 08 02:31:36 2015 +0300
     1.3 @@ -42,4 +42,7 @@
     1.4  
     1.5  bool combine_image(Image *dest, const Image *aimg, const Image *bimg, ImgCombine op = IMG_OP_LERP, float t = 0.5);
     1.6  
     1.7 +void convolve_horiz_image(Image *dest, float *kern, int ksz, float scale = 0.0);
     1.8 +void convolve_vert_image(Image *dest, float *kern, int ksz, float scale = 0.0);
     1.9 +
    1.10  #endif	// IMAGE_H_