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>2013-04-05 21:56:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-05 21:56:54 +0400
commit93ac968db3bc47e3520c662671cf68e86c0f2204 (patch)
tree46b37ba1fbf24c93c26ce6062bb4ee3841f9a3a9
parent5f49bab8bad9ecadcfecaec17268a4c75bcde762 (diff)
code cleanup: include order
-rw-r--r--source/blender/blenkernel/intern/CCGSubSurf.c8
-rw-r--r--source/blender/blenkernel/intern/collision.c7
-rw-r--r--source/blender/blenloader/intern/runtime.c6
-rw-r--r--source/blender/blenloader/intern/undofile.c6
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c6
-rw-r--r--source/blender/bmesh/operators/bmo_join_triangles.c4
-rw-r--r--source/blender/compositor/intern/COM_WorkScheduler.cpp4
-rw-r--r--source/blender/editors/armature/reeb.c4
-rw-r--r--source/blender/editors/gpencil/gpencil_undo.c4
-rw-r--r--source/blender/editors/include/UI_resources.h2
-rw-r--r--source/blender/editors/render/render_preview.c4
-rw-r--r--source/blender/editors/space_clip/clip_dopesheet_draw.c8
-rw-r--r--source/blender/editors/space_clip/clip_draw.c10
-rw-r--r--source/blender/editors/space_clip/clip_graph_draw.c8
-rw-r--r--source/blender/editors/space_file/file_panels.c5
-rw-r--r--source/blender/editors/space_file/space_file.c4
-rw-r--r--source/blender/editors/space_node/node_ops.c4
-rw-r--r--source/blender/editors/transform/transform_constraints.c4
-rw-r--r--source/blender/makesrna/intern/rna_cloth.c6
-rw-r--r--source/blender/makesrna/intern/rna_internal.h4
-rw-r--r--source/blender/makesrna/intern/rna_movieclip.c6
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_script.c4
-rw-r--r--source/blender/python/intern/bpy_library.c10
23 files changed, 61 insertions, 67 deletions
diff --git a/source/blender/blenkernel/intern/CCGSubSurf.c b/source/blender/blenkernel/intern/CCGSubSurf.c
index e58d484b0c0..292d74b03d7 100644
--- a/source/blender/blenkernel/intern/CCGSubSurf.c
+++ b/source/blender/blenkernel/intern/CCGSubSurf.c
@@ -7,15 +7,15 @@
#include <string.h>
#include <math.h>
-#include "BKE_ccg.h"
-#include "CCGSubSurf.h"
-#include "BKE_subsurf.h"
-
#include "MEM_guardedalloc.h"
#include "BLO_sys_types.h" // for intptr_t support
#include "BLI_utildefines.h" /* for BLI_assert */
+#include "BKE_ccg.h"
+#include "CCGSubSurf.h"
+#include "BKE_subsurf.h"
+
/* used for normalize_v3 in BLI_math_vector
* float.h's FLT_EPSILON causes trouble with subsurf normals - campbell */
#define EPSILON (1.0e-35f)
diff --git a/source/blender/blenkernel/intern/collision.c b/source/blender/blenkernel/intern/collision.c
index ed72a0fb37b..4bfe3b1c0bd 100644
--- a/source/blender/blenkernel/intern/collision.c
+++ b/source/blender/blenkernel/intern/collision.c
@@ -32,8 +32,6 @@
#include "MEM_guardedalloc.h"
-#include "BKE_cloth.h"
-
#include "DNA_cloth_types.h"
#include "DNA_group_types.h"
#include "DNA_mesh_types.h"
@@ -52,11 +50,12 @@
#include "BLI_rand.h"
#include "BKE_DerivedMesh.h"
+#include "BKE_cloth.h"
#include "BKE_global.h"
-#include "BKE_scene.h"
#include "BKE_mesh.h"
-#include "BKE_object.h"
#include "BKE_modifier.h"
+#include "BKE_object.h"
+#include "BKE_scene.h"
#include "BKE_DerivedMesh.h"
#ifdef WITH_BULLET
diff --git a/source/blender/blenloader/intern/runtime.c b/source/blender/blenloader/intern/runtime.c
index cbbaf713e84..d6fd2f92443 100644
--- a/source/blender/blenloader/intern/runtime.c
+++ b/source/blender/blenloader/intern/runtime.c
@@ -45,12 +45,12 @@
# include <unistd.h> // read
#endif
-#include "BLO_readfile.h"
-#include "BLO_runtime.h"
-
#include "BLI_blenlib.h"
#include "BLI_utildefines.h"
+#include "BLO_readfile.h"
+#include "BLO_runtime.h"
+
#include "BKE_blender.h"
#include "BKE_report.h"
diff --git a/source/blender/blenloader/intern/undofile.c b/source/blender/blenloader/intern/undofile.c
index 38fd6e9d32d..2b63d13a9dd 100644
--- a/source/blender/blenloader/intern/undofile.c
+++ b/source/blender/blenloader/intern/undofile.c
@@ -30,7 +30,6 @@
* \ingroup blenloader
*/
-
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
@@ -40,13 +39,10 @@
#include "DNA_listBase.h"
-
-#include "BLO_undofile.h"
-
#include "BLI_blenlib.h"
#include "BLI_linklist.h"
-
+#include "BLO_undofile.h"
/* **************** support for memory-write, for undo buffers *************** */
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index d0ab0ea5d60..6edbae0831e 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -36,12 +36,12 @@
#include "DNA_mesh_types.h"
#include "DNA_meshdata_types.h"
-#include "BKE_customdata.h"
-#include "BKE_multires.h"
-
#include "BLI_array.h"
#include "BLI_math.h"
+#include "BKE_customdata.h"
+#include "BKE_multires.h"
+
#include "bmesh.h"
#include "intern/bmesh_private.h"
diff --git a/source/blender/bmesh/operators/bmo_join_triangles.c b/source/blender/bmesh/operators/bmo_join_triangles.c
index 5e4fa29d953..edbb19afc62 100644
--- a/source/blender/bmesh/operators/bmo_join_triangles.c
+++ b/source/blender/bmesh/operators/bmo_join_triangles.c
@@ -33,11 +33,11 @@
#include "DNA_meshdata_types.h"
-#include "BKE_customdata.h"
-
#include "BLI_math.h"
#include "BLI_array.h"
+#include "BKE_customdata.h"
+
#include "bmesh.h"
#include "intern/bmesh_operators_private.h" /* own include */
diff --git a/source/blender/compositor/intern/COM_WorkScheduler.cpp b/source/blender/compositor/intern/COM_WorkScheduler.cpp
index 724abb59bcf..402fa28e210 100644
--- a/source/blender/compositor/intern/COM_WorkScheduler.cpp
+++ b/source/blender/compositor/intern/COM_WorkScheduler.cpp
@@ -23,8 +23,6 @@
#include <list>
#include <stdio.h>
-#include "BKE_global.h"
-
#include "COM_compositor.h"
#include "COM_WorkScheduler.h"
#include "COM_CPUDevice.h"
@@ -38,6 +36,8 @@
#include "PIL_time.h"
#include "BLI_threads.h"
+#include "BKE_global.h"
+
#if COM_CURRENT_THREADING_MODEL == COM_TM_NOTHREAD
# ifndef DEBUG /* test this so we dont get warnings in debug builds */
# warning COM_CURRENT_THREADING_MODEL COM_TM_NOTHREAD is activated. Use only for debugging.
diff --git a/source/blender/editors/armature/reeb.c b/source/blender/editors/armature/reeb.c
index 649ef90f7ba..665c5f628d9 100644
--- a/source/blender/editors/armature/reeb.c
+++ b/source/blender/editors/armature/reeb.c
@@ -26,13 +26,13 @@
#include "MEM_guardedalloc.h"
-#include "BKE_context.h"
-
#include "BLI_blenlib.h"
#include "BLI_math.h"
#include "BLI_edgehash.h"
#include "BLI_ghash.h"
+#include "BKE_context.h"
+
#include "reeb.h"
#if 0 /* UNUSED 2.5 */
diff --git a/source/blender/editors/gpencil/gpencil_undo.c b/source/blender/editors/gpencil/gpencil_undo.c
index 3d2cd260fb9..7edf723022f 100644
--- a/source/blender/editors/gpencil/gpencil_undo.c
+++ b/source/blender/editors/gpencil/gpencil_undo.c
@@ -38,12 +38,12 @@
#include "DNA_listBase.h"
#include "DNA_windowmanager_types.h"
+#include "BLI_listbase.h"
+
#include "BKE_blender.h"
#include "BKE_context.h"
#include "BKE_gpencil.h"
-#include "BLI_listbase.h"
-
#include "ED_gpencil.h"
#include "WM_api.h"
diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h
index 51d16094609..b37b4f40c08 100644
--- a/source/blender/editors/include/UI_resources.h
+++ b/source/blender/editors/include/UI_resources.h
@@ -308,4 +308,4 @@ const unsigned char *UI_ThemeGetColorPtr(struct bTheme *btheme, int spacetype, i
void UI_make_axis_color(const unsigned char *src_col, unsigned char *dst_col, const char axis);
-#endif /* UI_RESOURCES_H */
+#endif /* __UI_RESOURCES_H__ */
diff --git a/source/blender/editors/render/render_preview.c b/source/blender/editors/render/render_preview.c
index b851dc3be94..08349e2e0bb 100644
--- a/source/blender/editors/render/render_preview.c
+++ b/source/blender/editors/render/render_preview.c
@@ -43,13 +43,13 @@
#endif
#include "MEM_guardedalloc.h"
-#include "BLO_readfile.h"
-
#include "BLI_math.h"
#include "BLI_blenlib.h"
#include "BLI_threads.h"
#include "BLI_utildefines.h"
+#include "BLO_readfile.h"
+
#include "DNA_world_types.h"
#include "DNA_camera_types.h"
#include "DNA_material_types.h"
diff --git a/source/blender/editors/space_clip/clip_dopesheet_draw.c b/source/blender/editors/space_clip/clip_dopesheet_draw.c
index b1be9217819..382b0b75c5e 100644
--- a/source/blender/editors/space_clip/clip_dopesheet_draw.c
+++ b/source/blender/editors/space_clip/clip_dopesheet_draw.c
@@ -35,10 +35,6 @@
#include "MEM_guardedalloc.h"
-#include "BKE_context.h"
-#include "BKE_movieclip.h"
-#include "BKE_tracking.h"
-
#include "BLI_utildefines.h"
#include "BLI_math.h"
#include "BLI_string.h"
@@ -46,6 +42,10 @@
#include "BLI_math.h"
#include "BLI_rect.h"
+#include "BKE_context.h"
+#include "BKE_movieclip.h"
+#include "BKE_tracking.h"
+
#include "ED_screen.h"
#include "ED_clip.h"
diff --git a/source/blender/editors/space_clip/clip_draw.c b/source/blender/editors/space_clip/clip_draw.c
index 1000aced3a9..1d2ea8d7305 100644
--- a/source/blender/editors/space_clip/clip_draw.c
+++ b/source/blender/editors/space_clip/clip_draw.c
@@ -37,11 +37,6 @@
#include "MEM_guardedalloc.h"
-#include "BKE_context.h"
-#include "BKE_movieclip.h"
-#include "BKE_tracking.h"
-#include "BKE_mask.h"
-
#include "IMB_colormanagement.h"
#include "IMB_imbuf_types.h"
#include "IMB_imbuf.h"
@@ -52,6 +47,11 @@
#include "BLI_rect.h"
#include "BLI_math_base.h"
+#include "BKE_context.h"
+#include "BKE_movieclip.h"
+#include "BKE_tracking.h"
+#include "BKE_mask.h"
+
#include "ED_screen.h"
#include "ED_clip.h"
#include "ED_mask.h"
diff --git a/source/blender/editors/space_clip/clip_graph_draw.c b/source/blender/editors/space_clip/clip_graph_draw.c
index 7b070fde6ba..973200dc340 100644
--- a/source/blender/editors/space_clip/clip_graph_draw.c
+++ b/source/blender/editors/space_clip/clip_graph_draw.c
@@ -35,14 +35,14 @@
#include "MEM_guardedalloc.h"
-#include "BKE_context.h"
-#include "BKE_movieclip.h"
-#include "BKE_tracking.h"
-
#include "BLI_utildefines.h"
#include "BLI_math.h"
#include "BLI_string.h"
+#include "BKE_context.h"
+#include "BKE_movieclip.h"
+#include "BKE_tracking.h"
+
#include "ED_screen.h"
#include "ED_clip.h"
diff --git a/source/blender/editors/space_file/file_panels.c b/source/blender/editors/space_file/file_panels.c
index 35179511563..d6f644ab330 100644
--- a/source/blender/editors/space_file/file_panels.c
+++ b/source/blender/editors/space_file/file_panels.c
@@ -28,13 +28,12 @@
* \ingroup spfile
*/
+#include "BLI_blenlib.h"
+#include "BLI_utildefines.h"
#include "BKE_context.h"
#include "BKE_screen.h"
-#include "BLI_blenlib.h"
-#include "BLI_utildefines.h"
-
#include "BLF_translation.h"
#include "DNA_screen_types.h"
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 698c355fad3..d2624c7fa97 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -35,14 +35,14 @@
#include "BIF_gl.h"
-#include "BLO_readfile.h"
-
#include "BLI_blenlib.h"
#include "BLI_math.h"
#include "BLI_rand.h"
#include "BLI_utildefines.h"
#include "BLI_fileops_types.h"
+#include "BLO_readfile.h"
+
#include "BKE_context.h"
#include "BKE_screen.h"
#include "BKE_global.h"
diff --git a/source/blender/editors/space_node/node_ops.c b/source/blender/editors/space_node/node_ops.c
index 513bde4375c..0155750fbf8 100644
--- a/source/blender/editors/space_node/node_ops.c
+++ b/source/blender/editors/space_node/node_ops.c
@@ -31,10 +31,10 @@
#include "DNA_node_types.h"
-#include "BKE_context.h"
-
#include "BLI_utildefines.h"
+#include "BKE_context.h"
+
#include "ED_node.h" /* own include */
#include "ED_screen.h"
#include "ED_transform.h"
diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c
index 7678051fd38..2752d76fbf0 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -49,12 +49,12 @@
#include "BIF_gl.h"
#include "BIF_glutil.h"
-#include "BKE_context.h"
-
#include "BLI_math.h"
#include "BLI_utildefines.h"
#include "BLI_string.h"
+#include "BKE_context.h"
+
#include "ED_image.h"
#include "ED_view3d.h"
diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c
index 1bf15fd0838..74b0f69c9b8 100644
--- a/source/blender/makesrna/intern/rna_cloth.c
+++ b/source/blender/makesrna/intern/rna_cloth.c
@@ -27,9 +27,6 @@
#include <stdlib.h>
#include <limits.h>
-#include "BKE_cloth.h"
-#include "BKE_modifier.h"
-
#include "DNA_cloth_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
@@ -38,6 +35,9 @@
#include "rna_internal.h"
+#include "BKE_cloth.h"
+#include "BKE_modifier.h"
+
#include "WM_api.h"
#include "WM_types.h"
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index a38797d4831..48829cf1965 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -27,12 +27,12 @@
#ifndef __RNA_INTERNAL_H__
#define __RNA_INTERNAL_H__
-#include "UI_resources.h"
-
#include "BLI_utildefines.h"
#include "rna_internal_types.h"
+#include "UI_resources.h"
+
#define RNA_MAGIC ((int)~0)
struct ColorBand;
diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c
index 9b2bcab4604..bb5ff172672 100644
--- a/source/blender/makesrna/intern/rna_movieclip.c
+++ b/source/blender/makesrna/intern/rna_movieclip.c
@@ -30,9 +30,6 @@
#include "MEM_guardedalloc.h"
-#include "BKE_movieclip.h"
-#include "BKE_tracking.h"
-
#include "DNA_movieclip_types.h"
#include "DNA_scene_types.h"
@@ -40,6 +37,9 @@
#include "rna_internal.h"
+#include "BKE_movieclip.h"
+#include "BKE_tracking.h"
+
#include "WM_types.h"
#include "IMB_imbuf_types.h"
diff --git a/source/blender/nodes/shader/nodes/node_shader_script.c b/source/blender/nodes/shader/nodes/node_shader_script.c
index 6666197770f..c0d62f98d47 100644
--- a/source/blender/nodes/shader/nodes/node_shader_script.c
+++ b/source/blender/nodes/shader/nodes/node_shader_script.c
@@ -29,10 +29,10 @@
* \ingroup shdnodes
*/
-#include "BKE_idprop.h"
-
#include "node_shader_util.h"
+#include "BKE_idprop.h"
+
/* **************** Script ******************** */
static void init(bNodeTree *UNUSED(ntree), bNode *node)
diff --git a/source/blender/python/intern/bpy_library.c b/source/blender/python/intern/bpy_library.c
index 623d45dfd90..0ab8543c4ac 100644
--- a/source/blender/python/intern/bpy_library.c
+++ b/source/blender/python/intern/bpy_library.c
@@ -31,20 +31,17 @@
* a context manager.
*/
-/* nifty feature. swap out strings for RNA data */
-#define USE_RNA_DATABLOCKS
-
#include <Python.h>
#include <stddef.h>
-#include "BLO_readfile.h"
-
#include "BLI_utildefines.h"
#include "BLI_string.h"
#include "BLI_linklist.h"
#include "BLI_path_util.h"
#include "BLI_listbase.h"
+#include "BLO_readfile.h"
+
#include "BKE_global.h"
#include "BKE_main.h"
#include "BKE_library.h"
@@ -57,6 +54,9 @@
#include "bpy_util.h"
#include "bpy_library.h"
+/* nifty feature. swap out strings for RNA data */
+#define USE_RNA_DATABLOCKS
+
#ifdef USE_RNA_DATABLOCKS
# include "bpy_rna.h"
# include "RNA_access.h"