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:
authorDalai Felinto <dalai@blender.org>2020-03-19 11:33:03 +0300
committerDalai Felinto <dalai@blender.org>2020-03-19 11:33:58 +0300
commit2d1cce8331f3ecdfb8cb0c651e111ffac5dc7153 (patch)
treeec50d7bdca3901a6afcc986943011f08f9516307 /source/blender/editors/space_clip/tracking_select.c
parent008aaaa37841ca27d2bba80d8859336655cef455 (diff)
Cleanup: `make format` after SortedIncludes change
Diffstat (limited to 'source/blender/editors/space_clip/tracking_select.c')
-rw-r--r--source/blender/editors/space_clip/tracking_select.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_clip/tracking_select.c b/source/blender/editors/space_clip/tracking_select.c
index 36e529e47d0..2166cff4883 100644
--- a/source/blender/editors/space_clip/tracking_select.c
+++ b/source/blender/editors/space_clip/tracking_select.c
@@ -26,10 +26,10 @@
#include "DNA_movieclip_types.h"
#include "DNA_scene_types.h"
-#include "BLI_utildefines.h"
+#include "BLI_lasso_2d.h"
#include "BLI_math.h"
#include "BLI_rect.h"
-#include "BLI_lasso_2d.h"
+#include "BLI_utildefines.h"
#include "BKE_context.h"
#include "BKE_tracking.h"
@@ -49,8 +49,8 @@
#include "DEG_depsgraph.h"
-#include "tracking_ops_intern.h" /* own include */
#include "clip_intern.h" /* own include */
+#include "tracking_ops_intern.h" /* own include */
static float dist_to_crns(float co[2], float pos[2], float crns[4][2]);