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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-08-16 12:01:23 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-08-16 12:01:23 +0400
commitc32e8912debc26e0e6713130b171ce2345d14131 (patch)
tree0cf46b0969a975e0441f9e9e2bb7c56e044d5887 /source/blender/editors/space_clip/clip_intern.h
parent215da938ffceb0728b4d36c5a0b70e198fbc6b85 (diff)
Camera tracking integration
=========================== initial re-design commit: - Added Mode to Clip Editor. Currently the following modes are present: * Tracking/Solving mode (default) * Reconstruction mode * Distortion mode - Hide all tools/properties which doesn't make sense in current mode. - Keep a look at new template template_marker. It's needed to control marker's properties, changing of which should produce new keyframe. Currently only "Enabled" property can be control. Probably all properties from "Marker" panel could go there so this template wouldn't be so specific. - No operators are disabled for non-their mode. It means they can be triggered from Space menu or hotkey. Need clear map operators into mode to prevent mess of poll function.
Diffstat (limited to 'source/blender/editors/space_clip/clip_intern.h')
-rw-r--r--source/blender/editors/space_clip/clip_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index e1bdd3d4149..339a4944de6 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -70,7 +70,7 @@ void CLIP_OT_delete_marker(struct wmOperatorType *ot);
void CLIP_OT_track_markers(struct wmOperatorType *ot);
void CLIP_OT_solve_camera(struct wmOperatorType *ot);
-void CLIP_OT_clear_reconstruction(struct wmOperatorType *ot);
+void CLIP_OT_clear_solution(struct wmOperatorType *ot);
void CLIP_OT_clear_track_path(struct wmOperatorType *ot);
void CLIP_OT_join_tracks(struct wmOperatorType *ot);