From 225f68c324a3417fa3afb745c0e0f7e404737634 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 24 Feb 2015 00:36:33 +0500 Subject: Fix interpolation functions ignoring number of components when doing early output --- source/blender/blenlib/BLI_math_vector.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/blenlib/BLI_math_vector.h') diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h index 0f437b7fc38..33319f36507 100644 --- a/source/blender/blenlib/BLI_math_vector.h +++ b/source/blender/blenlib/BLI_math_vector.h @@ -321,6 +321,7 @@ void interp_vn_vn(float *array_tar, const float *array_src, const float t, const void fill_vn_i(int *array_tar, const int size, const int val); void fill_vn_short(short *array_tar, const int size, const short val); void fill_vn_ushort(unsigned short *array_tar, const int size, const unsigned short val); +void fill_vn_uchar(unsigned char *array_tar, const int size, const unsigned char val); void fill_vn_fl(float *array_tar, const int size, const float val); /**************************** Inline Definitions ******************************/ -- cgit v1.2.3