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>2020-03-14 07:22:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-14 07:39:59 +0300
commit60e3f690cb66dfea9e078b70f12fc53611268f36 (patch)
tree06ab133c46ad064f0e002915a487b3e787523eed /source/blender/editors
parent626b2bd071b334201996081b907e18d9c2dee919 (diff)
Cleanup: sort file lists & struct declatations
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/gpencil/CMakeLists.txt2
-rw-r--r--source/blender/editors/include/ED_fileselect.h1
-rw-r--r--source/blender/editors/include/ED_gpencil.h4
-rw-r--r--source/blender/editors/include/ED_view3d_offscreen.h6
-rw-r--r--source/blender/editors/sculpt_paint/CMakeLists.txt2
-rw-r--r--source/blender/editors/transform/CMakeLists.txt4
-rw-r--r--source/blender/editors/transform/transform_mode.h4
7 files changed, 12 insertions, 11 deletions
diff --git a/source/blender/editors/gpencil/CMakeLists.txt b/source/blender/editors/gpencil/CMakeLists.txt
index 512e1ec6270..4083169d65c 100644
--- a/source/blender/editors/gpencil/CMakeLists.txt
+++ b/source/blender/editors/gpencil/CMakeLists.txt
@@ -58,8 +58,8 @@ set(SRC
gpencil_undo.c
gpencil_utils.c
gpencil_uv.c
- gpencil_vertex_paint.c
gpencil_vertex_ops.c
+ gpencil_vertex_paint.c
gpencil_weight_paint.c
gpencil_intern.h
diff --git a/source/blender/editors/include/ED_fileselect.h b/source/blender/editors/include/ED_fileselect.h
index 7137b2244ab..a523e924e54 100644
--- a/source/blender/editors/include/ED_fileselect.h
+++ b/source/blender/editors/include/ED_fileselect.h
@@ -30,6 +30,7 @@ extern "C" {
struct ARegion;
struct FileSelectParams;
+struct Scene;
struct ScrArea;
struct SpaceFile;
struct bContext;
diff --git a/source/blender/editors/include/ED_gpencil.h b/source/blender/editors/include/ED_gpencil.h
index 8dd162ea538..66aa301f08c 100644
--- a/source/blender/editors/include/ED_gpencil.h
+++ b/source/blender/editors/include/ED_gpencil.h
@@ -33,13 +33,13 @@ struct ListBase;
struct PointerRNA;
struct Brush;
+struct GP_SpaceConversion;
struct bGPDframe;
struct bGPDlayer;
struct bGPDspoint;
struct bGPDstroke;
struct bGPdata;
struct tGPspoint;
-struct GP_SpaceConversion;
struct ARegion;
struct Depsgraph;
@@ -47,8 +47,8 @@ struct Main;
struct RegionView3D;
struct ReportList;
struct Scene;
-struct ToolSettings;
struct ScrArea;
+struct ToolSettings;
struct View3D;
struct ViewLayer;
struct bContext;
diff --git a/source/blender/editors/include/ED_view3d_offscreen.h b/source/blender/editors/include/ED_view3d_offscreen.h
index 4520f831a08..3cbb13fa8b5 100644
--- a/source/blender/editors/include/ED_view3d_offscreen.h
+++ b/source/blender/editors/include/ED_view3d_offscreen.h
@@ -34,12 +34,12 @@ extern "C" {
#endif
/* ********* exports for space_view3d/ module for offscreen rendering ********** */
-struct Depsgraph;
-struct Scene;
-struct View3D;
struct ARegion;
+struct Depsgraph;
struct GPUOffScreen;
struct GPUViewport;
+struct Scene;
+struct View3D;
struct View3DShading;
void ED_view3d_draw_offscreen(struct Depsgraph *depsgraph,
diff --git a/source/blender/editors/sculpt_paint/CMakeLists.txt b/source/blender/editors/sculpt_paint/CMakeLists.txt
index f497b80e0f4..de9e70f8e06 100644
--- a/source/blender/editors/sculpt_paint/CMakeLists.txt
+++ b/source/blender/editors/sculpt_paint/CMakeLists.txt
@@ -59,8 +59,8 @@ set(SRC
paint_vertex_weight_ops.c
paint_vertex_weight_utils.c
sculpt.c
- sculpt_multiplane_scrape.c
sculpt_cloth.c
+ sculpt_multiplane_scrape.c
sculpt_pose.c
sculpt_undo.c
sculpt_uv.c
diff --git a/source/blender/editors/transform/CMakeLists.txt b/source/blender/editors/transform/CMakeLists.txt
index 5f5a173932c..afa7b02a1f6 100644
--- a/source/blender/editors/transform/CMakeLists.txt
+++ b/source/blender/editors/transform/CMakeLists.txt
@@ -65,8 +65,6 @@ set(SRC
transform_gizmo_3d.c
transform_gizmo_extrude_3d.c
transform_input.c
- transform_ops.c
- transform_orientations.c
transform_mode.c
transform_mode_align.c
transform_mode_baketime.c
@@ -98,6 +96,8 @@ set(SRC
transform_mode_trackball.c
transform_mode_translate.c
transform_mode_vert_slide.c
+ transform_ops.c
+ transform_orientations.c
transform_snap.c
transform_snap_object.c
diff --git a/source/blender/editors/transform/transform_mode.h b/source/blender/editors/transform/transform_mode.h
index a8a930cc156..6180f6d3477 100644
--- a/source/blender/editors/transform/transform_mode.h
+++ b/source/blender/editors/transform/transform_mode.h
@@ -27,9 +27,9 @@
struct AnimData;
struct LinkNode;
-struct TransInfo;
-struct TransDataContainer;
struct TransData;
+struct TransDataContainer;
+struct TransInfo;
struct wmOperator;
/* header of TransDataEdgeSlideVert, TransDataEdgeSlideEdge */