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
2013-10-02Fix #36316: dots in cycles render on certain CPUs with 32 bit linux builds.Brecht Van Lommel
There is some sort of problem with the SSE2 code path, but I couldn't find the cause, maybe a compiler bug due to the large amount of inlining? For now I've disabled SSE2 optimizatons in 32 bit GCC builds.
2013-10-02OSX/GHOST: refine #60409 and better take multiple windows into accountJens Verwiebe
2013-10-02Fixes for cycles Mapping and Vector Transform node:Brecht Van Lommel
* Keep the Mapping node default type as Point for now, instead of Texture. The latter is a better default, but this is breaking API compatibility and it's too close to release to expect addons to be fixed in time. * Vector Transform and Mapping nodes had properties with name "type" to set the type of vector, but this conflicts with the node type property, so renamed to vector_type now.
2013-10-02fix [#36919] Cannot delete keyframe of animated simulation parameter if ↵Campbell Barton
simulation has been disabled
2013-10-02re-shuffle ifdef for osx to make it more clearCampbell Barton
2013-10-02OSX: readd ctrl-a for 'select all' in text(-boxes) against my own conviction ↵Jens Verwiebe
for now - really to be discussed
2013-10-02Fix cycles OpenCL compile error on AMD, and fix assert in debug builds.Brecht Van Lommel
2013-10-02Bugfix: All actions created when keyframing now have their "id-root" set ↵Joshua Leung
appropriately This means that it will no longer be possible to accidentally load a nodetree action in the Action Editor (object-level actions only), resulting in F-Curves getting invalidated/disabled.
2013-10-02libmv: fix matrix address being printed instead of actual valuesSergey Sharybin
2013-10-02fix [#36913] GHASH_FLAG_ALLOW_DUPES assert and crash in Edge CollapseCampbell Barton
2013-10-01fix regression - convex hull tool leaving new faces unselected.Campbell Barton
2013-10-01OSX/keys: change to OSX conform cmd-a for 'select-all' in text(-boxes)Jens Verwiebe
2013-10-01style edits and use macro for prefix checkCampbell Barton
2013-10-01bugfix [#32346] Node animation, removing nodes keeps FCurves.Dalai Felinto
The same bug happens for modifiers, but better to address it separately. Contribution and review by Lukas Toenne and Brecht van Lommel
2013-10-01allow knife-project to use sub-pixel length edges.Campbell Barton
2013-10-01Fix use of uninitialized variable in recent node tree changes.Brecht Van Lommel
2013-10-01Fix blender internal viewport render not using color management settings likeBrecht Van Lommel
view, exposure, looks.
2013-10-01UV sculpting was missing curve initialization causing crashes. ReportedAntony Riakiotakis
by Sebastian Koenig, thanks!
2013-10-01Optimization for recent changes in keyframe selectionSergey Sharybin
2013-10-01change to ED_armature_bone_rename so theres never any duplicates dictionary ↵Campbell Barton
items in 'ob->pose->chanhash' this turned out to be harmless but it did make ghash assert() because the ghash isnt flagged to allow duplicates.
2013-10-01add assert for bone renaming, to check if the chanhash is still valid.Campbell Barton
2013-10-01fix [#36906] AutoName operator do not update the display of the bone's name ↵Campbell Barton
in the Bone Properties
2013-10-01Fix issues reported by coverity scan in recent changes to customdata code.Brecht Van Lommel
2013-10-01fix [#36435] Crash on unwrap with specific meshCampbell Barton
2013-10-01make the manipulator work with curve handle selections with normal ↵Campbell Barton
orientation and individual origins.
2013-10-01check SELECT flags for curves (was checking for nonzero which would break if ↵Campbell Barton
new files use this field for other flags)
2013-10-01fix for bug own recent commit [#36904] Snap to Volume is broken with ArmatureCampbell Barton
this is infact an older bug which was exposed by the recent change. for now only use the change in behavior for scale/rotation.
2013-10-01replace inline searches for BLI_findindexCampbell Barton
2013-10-01Fix issues according to codereview pageSergey Sharybin
Mainly just a comment cleanups.
2013-10-01Yet another fix for node groups localization: The ntreeLocalMerge function ↵Lukas Toenne
can not be used to free localized node groups, because it is not commonly called to free the localized node trees. Instead these data blocks are freed using the standard ntreeFreeTree function, so freeing localized node groups has to be done there. This means an ugly loop over G.main to detect localized groups, but should not be a big problem in practice.
2013-10-01Mark some CCG funcrions as inlinedSergey Sharybin
This seems to be giving speedup up to 10% in own tests. -- svn merge -r60104:60105 ^/branches/soc-2013-depsgraph_mt
2013-10-01Fix for own commit r60468: All the localized node groups ended up in the ↵Lukas Toenne
main library ... This was because of the G.main check in ntreeCopyTree_internal, which determines whether a node tree gets put into main or is an independent data block. This can now be controlled by passing an explicit Main pointer, so we can ensure localized node groups don't pollute main.
2013-10-01fix bug with vector handles in the graph editor when transforming 2 selected ↵Campbell Barton
points of a bezt, the unselected handle wouldn't have its value restored on transform cancel.
2013-10-01fix for error setting vector handles to free when both vector handles were ↵Campbell Barton
selected but not the mid-point. only one of the handles would be changed to the HD_FREE. effected curves and fcurves.
2013-10-01Fix #36850, Material Node Editor Crash Always.Lukas Toenne
This problem was introduced with pynodes merge in r55373. It's caused by missing localization of node groups in shaders in cases where GLSL + node previews causes threading conflicts. I'm not quite sure why we didn't do this before, but now all node groups also get localized recursively.
2013-10-01fix [#36900] single spline handle can't be "scaled"Campbell Barton
this works in the graph editor but didn't for curves, useful functionality to have.
2013-10-01addition to r60465, check for individual centers when positioning the ↵Campbell Barton
manipulator
2013-10-01curve transform: scale handles around their knot when using individual centers.Campbell Barton
2013-10-01add rna path callback for material slots but disable animation.Campbell Barton
without this - the info space would report an invalid rna-path when showing the string to change a value.
2013-10-01remove assert for poly_find_ear(), added recently but its incorrect, also ↵Campbell Barton
minor style edits.
2013-10-01de-duplicate report strings for freestyle error checksCampbell Barton
2013-10-01Follow-up to r60433 (related to Bug #36878): additional checks for NULL line ↵Tamito Kajiyama
styles.
2013-10-01* Change NA_EDITED notifier to NA_ADDED, as suggested by Sergey. (r60414 ↵Thomas Dinges
follow up)
2013-10-01Fix #36894: maya keymap delete/backspace would immediately delete a mesh ↵Brecht Van Lommel
element, now it pops up the menu with delete options and dissolve so that there is a quick key shortcut for those too.
2013-10-01Fix #36852: duplicate window crash on OS X, another case where it could crashBrecht Van Lommel
when changing the window state raises an event, and the window isn't fully initialized yet.
2013-10-01Added new file that contains the sha1 hash key of the currently to be used ↵Gaia Clary
OpenCollada libraries
2013-10-01Fix [#36422] Trimmed audio files (hard cut only) in a metastrip have their ↵Bastien Montagne
trim removed Meta sound update (seq_update_sound_bounds_recursive_rec) was not taking into account hard trim (anim_startofs) when setting sound's start, while default sound strip update (sound_move_scene_sound_defaults) did... This could use some refactor, though, with a single func used in both cases, to avoid such issue. Also added soft trim to sound panel, only hard one was available.
2013-09-30Fix #36891: on OS X, cmd+s or cmd+o did not work when pressing them over theBrecht Van Lommel
text editor.
2013-09-30Usual UI messages fixes...Bastien Montagne
2013-09-30Fix #36892: crash running "Sample Color" operator from 3D viewport when theBrecht Van Lommel
sequencer contained any data. The sequence color sample operator was available here when it shouldn't be.