Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-02-23 22:36:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-02-23 22:36:33 +0300
commit225f68c324a3417fa3afb745c0e0f7e404737634 (patch)
treee32be7a23955fac66a062dbf6fedcf5ccb5def10 /source/blender/blenlib/BLI_math_vector.h
parent2081fd1d7de40f7b3e1a529f5b450ed508fe9257 (diff)
Fix interpolation functions ignoring number of components when doing early output
Diffstat (limited to 'source/blender/blenlib/BLI_math_vector.h')
-rw-r--r--source/blender/blenlib/BLI_math_vector.h1
1 files changed, 1 insertions, 0 deletions
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 ******************************/