Fix for building on OSX/Clang.

This commit is contained in:
wiredfool 2014-12-01 20:40:10 -08:00
parent 5f7c2dadc4
commit 05b578e7f4

View File

@ -8,7 +8,7 @@
typedef UINT8 pixel[4];
void inline
void static inline
ImagingLineBoxBlur32(pixel *lineOut, pixel *lineIn, int lastx, int radius, int edgeA,
int edgeB, UINT32 ww, UINT32 fw)
{
@ -103,7 +103,7 @@ ImagingLineBoxBlur32(pixel *lineOut, pixel *lineIn, int lastx, int radius, int e
}
void inline
void static inline
ImagingLineBoxBlur8(UINT8 *lineOut, UINT8 *lineIn, int lastx, int radius, int edgeA,
int edgeB, UINT32 ww, UINT32 fw)
{