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
2015-05-05Math Lib: rename fill_*, to copy_*Campbell Barton
matching convention for fixed length api, eg: copy_v3_fl
2015-05-05Cleanup: function arg wrappingCampbell Barton
2015-05-05Cleanup: rip toolCampbell Barton
2015-05-05BMesh: improve rip tool /w mon-manifold vertsCampbell Barton
Can now rip from multiple fans (mixed single faces or larger regions) Also add BM_vert_is_manifold_region which only checks if a vert has disconnected fans.
2015-05-04Cleanup: style & const'sCampbell Barton
2015-05-04Cleanup: wrapped function indentationCampbell Barton
2015-05-04Cleanup: deduplicate code.Bastien Montagne
FileBrowser had its own 'shorten_string' func, when we have a full fledge one in interface_widget code...
2015-05-04Revert "Different drawing for object centers."Antony Riakiotakis
This reverts commit 5a8629c0d7da6cfb4b696f1787111c9492e03aba. It does not really work that well since objects can draw in front of selection circles now.
2015-05-04UI: location/scale were snapping to 10sCampbell Barton
In practice this isn't useful (for scale especially). For float buttons with a very large range, don't attempt to match the snap to the range.
2015-05-04UI: button snap (ctrl) was rounding downCampbell Barton
2015-05-04Fix T44503 full sample does not display any preview any more.Antony Riakiotakis
The fix exposes another error not fixed in this commit, escaping the render will not flush the full sample render result correctly.
2015-05-04Fix eyedropper with quad-viewCampbell Barton
2015-05-04Fix T44592: Zero scale on an axis, zeros allCampbell Barton
2015-05-04Fix T44594 disable depth of field in wireframe/bounding box modes. WeAntony Riakiotakis
don't supply depth information in those modes so supporting the effects does not really make sense
2015-05-04Fixed comment.Lukas Tönne
2015-05-04Fix possible crash with datatransfer operator when source object was hidden.Bastien Montagne
Mismatch in poll and exec funcs when getting active (source) object...
2015-05-04Different drawing for object centers.Antony Riakiotakis
Code here did depth test always and depth range 0.0. There is no real reason for object centers to write and get tested against depth buffer in this case, just disable the depth test instead ;) Helps with blurry object centers in depth of field mode too (centers wrote depth 0 and were always blurry)
2015-05-04Separate scene simplification into viewport and renderSergey Sharybin
This way it is possible to have viewport simplification bumped all the way up, making viewport really responsive but still have final render to use highest subdivision possible. Reviewers: lukastoenne, campbellbarton, dingto Reviewed By: campbellbarton, dingto Subscribers: dingto, nutel, eyecandy, venomgfx Differential Revision: https://developer.blender.org/D1273
2015-05-04Skin Modifier: remove redundant edge-calculationCampbell Barton
2015-05-04Fix T42893: Skin Modifier, changes randomly toggling editmodeCampbell Barton
Own regression, previously it would do a full mesh normal calculation for each isolated shape (could hang on meshes with many loose parts). However the normals are needed, instead of doing a full calculation, just set normals on new faces. Thanks to Brecht for finding cause!
2015-05-04Skin Modifier: Add missing operator stack popBrecht Van Lommel
2015-05-04Fix metadata display in sequencer lost after doing a preprocessAntony Riakiotakis
transform. IMB_makeSingleUser makes a copy and destroys metadata. I am not sure if this is the safest way to make a single user ImBuf (setting the refcount to 0 is simpler and there's less, but no zero, risk of dangling pointers) but I will leave this as is for now in case there is an actual need for a copy here. The alternative approach should be tested at some point.
2015-05-04Freestyle: Fix for line style ID datablocks not copied when fully copying a ↵Tamito Kajiyama
scene.
2015-05-04Don't scale metadata font with zoom - makes strings not consistentlyAntony Riakiotakis
adhere to the string length
2015-05-04Support displaying metadata for images in sequencer preview windows (notAntony Riakiotakis
backdrop)
2015-05-04Fix T29029: Grease pencil fails in Quad ViewCampbell Barton
2015-05-04Freestyle: Compilation error fix after recent changes in BKE_object_add()Sergey Sharybin
2015-05-04Correct own error in recent quad-view ruler fixCampbell Barton
2015-05-04Fix Buttons context, invalid object data accessCampbell Barton
Another instance of T44376. Crash where the Python context would access a stale pointer to the active object.
2015-05-04Button Space: clear pin flag when NULL'ing pointerCampbell Barton
2015-05-04Fix T44376: Buttons context, invalid data accessCampbell Barton
Removing a scene from the buttons window would crash from a Python operator.
2015-05-04Cleanup: WM_main_remove_notifier_referenceCampbell Barton
Assumed the `reference` pointer is an ID, currently true, but may not always be. Add a callback specifically for this purpose since cleaning up notifiers and space-types are different operations.
2015-05-04Cleanup: naming for callback wrappersCampbell Barton
2015-05-04Remove redundant outliner lookup freeing objectsCampbell Barton
2015-05-04Add name argument to data creation API callsCampbell Barton
Was adding then renaming, unnecessarily.
2015-05-03Fix typos.Tamito Kajiyama
2015-05-03Rigidbody: Fix viewport update when changing collision shape in toolbarSergej Reich
2015-05-03Fix T44591: Set PBone Group operator did not handled predifined group index ↵Bastien Montagne
in its invoke func.
2015-05-03Fix T44185, Fix T44090: hair texture density working unreliable.Krzysztof Recko
"Unexisting" particles must be freed after the unexist flag has been set, which was no longer the case after 78c491e62a5. Reviewers: brecht Differential Revision: https://developer.blender.org/D1213
2015-05-03Fix T41739: 3D view solid draw mode missing some material node updates.Brecht Van Lommel
2015-05-03Fix T41893: inconsistent color management on sculpt texture nodes previews.Brecht Van Lommel
2015-05-03Cleanup: rename clear_skin & clear_mask operators to skin_clear and mask_clear.Bastien Montagne
So that they match all other op names around - and sensible logic as well.
2015-05-03Fix T44589: No way to add a skin data layer manualy.Bastien Montagne
There are several ways to end up with an object with skin modifier, but no skin data on the geometry. So we need an operator to add it by hands. Also tweaked a bit UI of this modifier.
2015-05-03We do need to transform lnors in BKE_mesh_transform(), much handy for scripts.Bastien Montagne
2015-05-03Added name attribute to instance_geometry nodes (request for Second Life)Gaia Clary
2015-05-02BMesh: rip-tool can now split off isolated fansCampbell Barton
Useful since there wasn't a good way to do this previously.
2015-05-02BMesh: utility to split isolated loop regionsCampbell Barton
2015-05-02Cleanup: redundant varsCampbell Barton
2015-05-02Fix rna default value in BGE UI.Porteries Tristan
2015-05-02BMesh: rework BM_vert_is_manifold (simplify logic)Campbell Barton
- simplify boundary handling (walk from boundary - no need to reset walking) - early exit when the vert has >2 boundaries - use BM_vert_step_fan_loop to walk the fan