[Bf-blender-cvs] [fe3f504902b] blender-v2.79a-release: Missing from last commit

Campbell Barton noreply at git.blender.org
Wed Jan 3 12:48:07 CET 2018


Commit: fe3f504902b3e39a8336c888351e27531b2a2270
Author: Campbell Barton
Date:   Sun Aug 27 15:24:41 2017 +1000
Branches: blender-v2.79a-release
https://developer.blender.org/rBfe3f504902b3e39a8336c888351e27531b2a2270

Missing from last commit

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

A	tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h

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

diff --git a/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h b/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h
new file mode 100644
index 00000000000..dad77a257d5
--- /dev/null
+++ b/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h
@@ -0,0 +1,18 @@
+/* Apache License, Version 2.0 */
+
+extern "C" {
+
+bool EIG_self_adjoint_eigen_solve(const int size, const float *matrix, float *r_eigen_values, float *r_eigen_vectors)
+{
+	BLI_assert(0);
+	UNUSED_VARS(size, matrix, r_eigen_values, r_eigen_vectors);
+	return false;
+}
+
+void EIG_svd_square_matrix(const int size, const float *matrix, float *r_U, float *r_S, float *r_V)
+{
+	BLI_assert(0);
+	UNUSED_VARS(size, matrix, r_U, r_S, r_V);
+}
+
+}



More information about the Bf-blender-cvs mailing list