[Bf-blender-cvs] [5ff7827980e] master: Cleanup: correct mul_v4_v4fl declaration

Jorge Bernal noreply at git.blender.org
Wed Nov 13 14:13:25 CET 2019


Commit: 5ff7827980e3b3e598a7f630f8b2a3c90222ac70
Author: Jorge Bernal
Date:   Thu Nov 14 00:07:35 2019 +1100
Branches: master
https://developer.blender.org/rB5ff7827980e3b3e598a7f630f8b2a3c90222ac70

Cleanup: correct mul_v4_v4fl declaration

===================================================================

M	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 31d725af5ad..9fbd0227b7e 100644
--- a/source/blender/blenlib/BLI_math_vector.h
+++ b/source/blender/blenlib/BLI_math_vector.h
@@ -139,7 +139,7 @@ MINLINE void mul_v3_v3(float r[3], const float a[3]);
 MINLINE void mul_v3_v3v3(float r[3], const float a[3], const float b[3]);
 MINLINE void mul_v4_fl(float r[4], float f);
 MINLINE void mul_v4_v4(float r[4], const float a[4]);
-MINLINE void mul_v4_v4fl(float r[3], const float a[3], float f);
+MINLINE void mul_v4_v4fl(float r[3], const float a[4], float f);
 MINLINE void mul_v2_v2_cw(float r[2], const float mat[2], const float vec[2]);
 MINLINE void mul_v2_v2_ccw(float r[2], const float mat[2], const float vec[2]);
 MINLINE float mul_project_m4_v3_zfac(const float mat[4][4],



More information about the Bf-blender-cvs mailing list