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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-12-06 20:25:16 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-12-06 20:25:16 +0300
commit092e708ee1ae5bf1dbf070144daf793540380d0e (patch)
tree04be3a4bb9f645c19567876ee36b0a8700ecf8ee /source/blender/editors/render/render_ops.c
parent9ec726c09891e0d17217ce6b81ce0e3ff692eb02 (diff)
parentba0981031ae20f1cda43a2491f6347295b6a17d2 (diff)
Merged changes in the trunk up to revision 25149.
After the merge operation, running the diff command showed that the branch had a significant amount of differences from the trunk revision 25149. I had no idea where these differences came from. To resolve them and make the branch up-to-date, I just copied the following files from the trunk: release/scripts/io/import_anim_bvh.py release/scripts/io/import_scene_obj.py release/scripts/ui/space_image.py release/scripts/ui/space_view3d.py source/blender/blenkernel/intern/object.c source/blender/blenlib/BLI_math_base.h source/blender/blenlib/intern/math_base.c source/blender/editors/animation/anim_markers.c source/blender/editors/armature/armature_intern.h source/blender/editors/armature/armature_ops.c source/blender/editors/armature/editarmature.c source/blender/editors/curve/curve_intern.h source/blender/editors/curve/curve_ops.c source/blender/editors/include/ED_mesh.h source/blender/editors/include/ED_object.h source/blender/editors/include/ED_particle.h source/blender/editors/mesh/editface.c source/blender/editors/mesh/editmesh_mods.c source/blender/editors/mesh/mesh_intern.h source/blender/editors/mesh/mesh_ops.c source/blender/editors/metaball/mball_edit.c source/blender/editors/metaball/mball_intern.h source/blender/editors/metaball/mball_ops.c source/blender/editors/object/object_intern.h source/blender/editors/object/object_lattice.c source/blender/editors/object/object_ops.c source/blender/editors/object/object_select.c source/blender/editors/physics/particle_edit.c source/blender/editors/physics/physics_intern.h source/blender/editors/physics/physics_ops.c source/blender/editors/sculpt_paint/paint_intern.h source/blender/editors/sculpt_paint/paint_ops.c source/blender/editors/sculpt_paint/paint_utils.c source/blender/editors/space_view3d/view3d_select.c source/blender/editors/uvedit/uvedit_ops.c source/blender/windowmanager/WM_api.h source/blender/windowmanager/intern/wm_operators.c
Diffstat (limited to 'source/blender/editors/render/render_ops.c')
-rw-r--r--source/blender/editors/render/render_ops.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/editors/render/render_ops.c b/source/blender/editors/render/render_ops.c
index 9d2e8e618cb..35435f324cc 100644
--- a/source/blender/editors/render/render_ops.c
+++ b/source/blender/editors/render/render_ops.c
@@ -34,6 +34,10 @@
#include "render_intern.h" // own include
+#if (defined(WITH_QUICKTIME) && !defined(USE_QTKIT))
+#include "quicktime_export.h"
+#endif
+
/***************************** render ***********************************/
void ED_operatortypes_render(void)
@@ -57,6 +61,10 @@ void ED_operatortypes_render(void)
WM_operatortype_append(SCENE_OT_freestyle_module_move_up);
WM_operatortype_append(SCENE_OT_freestyle_module_move_down);
+#if (defined(WITH_QUICKTIME) && !defined(USE_QTKIT))
+ WM_operatortype_append(SCENE_OT_render_data_set_quicktime_codec);
+#endif
+
WM_operatortype_append(TEXTURE_OT_slot_move);
}