[Bf-blender-cvs] [b1f2b698847] master: Missing from last commit

Campbell Barton noreply at git.blender.org
Sun Aug 27 07:19:32 CEST 2017


Commit: b1f2b69884785543190bb4a9377a6f277be290da
Author: Campbell Barton
Date:   Sun Aug 27 15:24:41 2017 +1000
Branches: master
https://developer.blender.org/rBb1f2b69884785543190bb4a9377a6f277be290da

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