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>2010-04-13 02:33:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-13 02:33:43 +0400
commit4824e7eeeb82fcad72f222fe0d74c41c374b648e (patch)
tree1a6cf992caf36f9c8883107a9831304d9a793a6b /source/blender/modifiers/intern/MOD_util.c
parent7814d42ec79601cd4bafc7a8dfe2596f892757c9 (diff)
modifier include cleanup, this might need fixes on other systems but hard to avoid.
also removed unused stuff from cmake modifier file
Diffstat (limited to 'source/blender/modifiers/intern/MOD_util.c')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index 8c08bce4df9..d4e202a73b9 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -30,23 +30,22 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#include "string.h"
+
#include "DNA_modifier_types.h"
#include "DNA_object_types.h"
#include "DNA_curve_types.h"
-#include "MEM_guardedalloc.h"
-#include "MOD_util.h"
-
#include "BKE_cdderivedmesh.h"
#include "BKE_mesh.h"
#include "BKE_displist.h"
+#include "BKE_utildefines.h"
-#include "RE_shader_ext.h"
+#include "MOD_util.h"
-#include "BKE_utildefines.h"
+#include "MEM_guardedalloc.h"
-#include "stdlib.h"
-#include "string.h"
+#include "RE_shader_ext.h"
void get_texture_value(Tex *texture, float *tex_co, TexResult *texres)
{