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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-03-03 01:01:43 +0300
committerDaniel Genrich <daniel.genrich@gmx.net>2008-03-03 01:01:43 +0300
commit373f142530e288610ace4cf650ad7abb316f5586 (patch)
treed39cd9c7e051246e119caa8ee7386c9acfc6d6fd /source/blender/blenkernel/BKE_cloth.h
parentbc764858406f38ad0855ac50bff2715dc2c182ea (diff)
Cloth: Bugfix for IRIX compile (hopefully), bugfix for multiple springs (appeared on triangles), _test_ for inlining on msvc
Diffstat (limited to 'source/blender/blenkernel/BKE_cloth.h')
-rw-r--r--source/blender/blenkernel/BKE_cloth.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_cloth.h b/source/blender/blenkernel/BKE_cloth.h
index f5bd028ba0d..005057339eb 100644
--- a/source/blender/blenkernel/BKE_cloth.h
+++ b/source/blender/blenkernel/BKE_cloth.h
@@ -58,9 +58,11 @@ struct CollisionTree;
// this is needed for inlining behaviour
#ifndef _WIN32
#define LINUX
+#ifndef __sgi
#define DO_INLINE inline
+#endif
#else
-#define DO_INLINE
+#define DO_INLINE __inline
#endif
#define CLOTH_MAX_THREAD 2