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 'source/blender/src/fluidsim.c')
-rw-r--r--source/blender/src/fluidsim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/fluidsim.c b/source/blender/src/fluidsim.c
index 4be00b63ecb..c176ff7800e 100644
--- a/source/blender/src/fluidsim.c
+++ b/source/blender/src/fluidsim.c
@@ -57,7 +57,7 @@
#include "BLI_blenlib.h"
#include "BLI_threads.h"
#include "BLI_arithb.h"
-#include "MTC_matrixops.h"
+
#include "BKE_customdata.h"
#include "BKE_displist.h"
@@ -801,7 +801,7 @@ void fluidsimBake(struct Object *ob)
}
// init trafo matrix
- MTC_Mat4CpyMat4(domainMat, fsDomain->obmat);
+ Mat4CpyMat4(domainMat, fsDomain->obmat);
if(!Mat4Invert(invDomMat, domainMat)) {
snprintf(debugStrBuffer,256,"fluidsimBake::error - Invalid obj matrix?\n");
elbeemDebugOut(debugStrBuffer);