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:
authorCampbell Barton <ideasman42@gmail.com>2017-08-27 08:24:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-27 08:24:41 +0300
commitb1f2b69884785543190bb4a9377a6f277be290da (patch)
tree23f17388f8ee21a2b1fdabc57f68053985d75d96 /tests/gtests
parent6178cf83537b5b1265867b7bd0d0e0c487a8937a (diff)
Missing from last commit
Diffstat (limited to 'tests/gtests')
-rw-r--r--tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h18
1 files changed, 18 insertions, 0 deletions
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);
+}
+
+}