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:
Diffstat (limited to 'tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h')
-rw-r--r--tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h b/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h
deleted file mode 100644
index dec2631fc63..00000000000
--- a/tests/gtests/blenlib/stubs/bf_intern_eigen_stubs.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Apache License, Version 2.0 */
-
-extern "C" {
-
-void EIG_svd_square_matrix(
- const int size, const float *matrix, float *r_U, float *r_S, float *r_V);
-bool EIG_self_adjoint_eigen_solve(const int size,
- const float *matrix,
- float *r_eigen_values,
- float *r_eigen_vectors);
-
-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);
-}
-}