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
AgeCommit message (Collapse)Author
2012-02-17Camera tracking: fixed issue when track used for rotation stabilization ↵Sergey Sharybin
points to a freed memory after re-tracking this track. -- svn merge -r44148:44149 ^/branches/soc-2011-tomato
2012-02-17Camera tracking: fixed incorrect auto-scale calculation for 2d stabilizationSergey Sharybin
-- svn merge -r44146:44147 ^/branches/soc-2011-tomato
2012-02-17Camera tracking: fix for missing cache invalidation when disabling/enabling ↵Sergey Sharybin
channels for stabilized shot -- svn merge -r44140:44141 ^/branches/soc-2011-tomato
2012-02-17Camera tracking: animation datablock for MovieClipSergey Sharybin
Added AnimData block to MovieClip datablock which allows to animate different properties in clip. Currently supports animation of stabilization influence only. -- svn merge -r44129:44130 ^/branches/soc-2011-tomato
2012-02-17Build proxy from meta and image strips used resolution used for display,Sergey Sharybin
not set by building job which leads to unusable proxies. This change should resolve issues reported in #30229: Sequencer Meta strip Proxy Fails and probably #30196 will work nicer too.
2012-02-17Release Cycle for 2.63:Thomas Dinges
* BCon1, alpha.
2012-02-16Tomato: configurable filter type for 2d stabilizationSergey Sharybin
2012-02-16Tomato: run aspect correction before stabilizing shot.Sergey Sharybin
2012-02-16Tomato: fixed issue when track used for rotation stabilization points to a ↵Sergey Sharybin
freed memory after re-tracking this track.
2012-02-16Tomato: fixed incorrect auto-scale calculation for 2d stabilizationSergey Sharybin
2012-02-16bmesh todo. making an image local wasn't dealing with mesh polygon texface data.Campbell Barton
2012-02-16ffmpeg: take back 44142, conditional was wrongJens Verwiebe
2012-02-16ffmpeg: only suppress loopfilter for .mov ( compatibility ), but keep for ↵Jens Verwiebe
.avi (quality )
2012-02-16Tomato: fix for missing cache invalidation when disabling/enabling channels ↵Sergey Sharybin
for stabilized shot
2012-02-16Merging r44129 through r44139 from trunk into soc-2011-tomatoSergey Sharybin
2012-02-15svn merge ^/trunk/blender -r44118:44136Campbell Barton
2012-02-15Set BLENDER_VERSION_CYCLE to release. Thomas Dinges
2012-02-15The traditional release commit, 2.62!Ton Roosendaal
Special thanks to splash committee: Kevin Hays, Per Gantelius and Wray Bowling. Splash by Alexey Lugovoy.
2012-02-15Camera tracking: animation datablock for MovieClipSergey Sharybin
Added AnimData block to MovieClip datablock which allows to animate different properties in clip. Currently supports animation of stabilization influence only.
2012-02-15* correct bad pointer check in expand_local_mesh()Campbell Barton
* check total polygons rather then faces in draw_mesh_object()
2012-02-15went over all uses of mesh->mface and added BMESH_TODO comments forCampbell Barton
areas that need to be updated.
2012-02-15svn merge ^/trunk/blender -r44076:44118Campbell Barton
2012-02-14ffmpeg: don't use flags:loop for .h264, this allows to see the video in OSX ↵Jens Verwiebe
quickview and Quicktimeplayer( windows ? )
2012-02-14use tabs for indentation Campbell Barton
2012-02-13Fix for [#27349] Sequencer: Meta Strips plays unavailable audioJoerg Mueller
Hopefully at least... Sequencer code is like <insert name of random ancient language that nobody knows anymore here>.
2012-02-13marked navmesh as BMESH_TODO, mixed mface/mpoly functions were being used ↵Campbell Barton
for navmesh too, now editing funcs use polygons only.
2012-02-13svn merge ^/trunk/blender -r44024:44076Campbell Barton
2012-02-12* remove the MFace parts of join (we only need polygon data)Campbell Barton
* other minor cleanups
2012-02-12bmesh minor refactorCampbell Barton
* add DM_to_bmesh_ex, DM_to_bmesh for converting a derived mesh to a BMesh (rather than a BMEditMesh) * have a generic variable for allocsize: bm_mesh_allocsize_default, rather than copying the values about.
2012-02-12rename CDDM_To_BMesh to DM_to_editbmesh, since theres no requirement forCampbell Barton
the input to be a CDDM. remove conversions to CDDM for edge split and bevel (will give some speedup).
2012-02-12style cleanup for bmesh headersCampbell Barton
- use consistant header guards - correct doxy comments - remove ED_toolmode.h (unused)
2012-02-12code refactor, function renaming for bmesh.Campbell Barton
These changes are to make the bmesh api more consistent and easier to learn, grouping similar functions which is convenient for autocomplete. This uses similar convention to RNA. * use face/loop/edge/vert as a prefix for functions. * use 'elem' as a prefix too for functions that can take any type with a BMHeader. * changed from camel case to underscore separated (like RNA).
2012-02-12rename BM_ flags for `BMHeader->hflag` to BM_ELEM_ to be more clear that ↵Campbell Barton
these flags apply to bmesh elements.
2012-02-12Fix [#29737] Can't edit particle hair if particle count is 0.Janne Karhu
* Hair wasn't flagged as "done" if particle count was 0 before setting particles as hair, so particle edit mode didn't work.
2012-02-12Fix [#29530] Changing to particle mode could crash in some casesJanne Karhu
* If a baked particle didn't have any cached keys creating an edit path for it crashed.
2012-02-12Fix [#29265] Particle Instance: Create Along Paths + Children inconsistent ↵Janne Karhu
with actual children hair particles * Hair particle rotations weren't calculated properly for particle locations along a path and the "particle on path" calculations were not correct in many other ways too. * Now the particle's location along a path is interpolated directly from the cached paths if it exist. These paths are always correctly calculated. * Paths are now cached if a particle instance modifier using the particle system with the path option exists.
2012-02-11minor include cleanup, add GPL header (copied from BKE_animsys.hCampbell Barton
2012-02-11mode bmesh include cleanup, remove unused file too.Campbell Barton
2012-02-11include cleanupCampbell Barton
2012-02-11GPL Header CleanupCampbell Barton
2012-02-10Style CleanupCampbell Barton
2012-02-09dont recalc normals after applying modifiers, this is already checked in ↵Campbell Barton
previous code.
2012-02-08fix [#30101] Vertex colors disappear after leaving edit modeCampbell Barton
this commit makes vertex paint check if it needs to rebuild the modifier stack when painting. - when painting with no modifiers, do partial updates from polys to tessfaces while painting, skip re-tesselation. - when painting onto a modified mesh, dont bother adjusting tessface colors - since the modifier stack will do this anyway. both cases should be faster then before.
2012-02-08Code Cleanup:Campbell Barton
macro for copying polygon settings
2012-02-08Code cleanup: remove duplicate OR'ing of CD_MASK_MDISPS.Nicholas Bishop
2012-02-08svn merge ^/trunk/blender -r43934:43976Campbell Barton
2012-02-08Code cleanup: spelling fix, Tesselection->tesselationNicholas Bishop
2012-02-08Fix for wrong pixel format used for qtrleSergey Sharybin
2012-02-07Style Cleanup:Campbell Barton
replace 0/1 with TRUE/FALSE define.
2012-02-07FFmpeg output fixes and small improvementSergey Sharybin
Most part of this commit fixes issues with FFmpeg output with currently supported codecs: - avcodec_encode_video might return zero which doesn't mean error happened, but blender will handle this as error and will stop rendering to video file. - Changing output video codec wouldn't update "expert" options set for video output which leads to some sideeffects like ignored Lossless option for x264 codec. This fixes allowed to add QTRLE codec easily.