Blender Git Commits

Blender Git "master" branch commits.

Page: 2928 / 5574

March 12, 2014, 07:59 (GMT)
Fix T39126: Convert To: Mesh from Curve/Meta/Surface does not respect "Keep Original"

Own regression, didn't consider operator redo would leave scene in a non-evaluated state.
March 12, 2014, 07:30 (GMT)
BMesh: minor optimization, step over own loop in BM_face_exists
March 12, 2014, 07:30 (GMT)
Transform: minor optimization, use BLI_bitmap for island tagging
March 12, 2014, 07:30 (GMT)
Transform: internal change, simplify view angle checks
March 12, 2014, 07:30 (GMT)
Code cleanup: redundant normalize in bmbvh ray cast
March 11, 2014, 22:04 (GMT)
Cycles: Disable Branched Path on sm_30 for now, recent Indirect Multi Light addition makes nvcc fail.
March 11, 2014, 20:07 (GMT)
Fix T39060: "Choose by numbers" do not work with Enum-menus, but work with operators-menus

The "layer" exception in handling numbers for menus was a bit too much greedy, eating numbers for all RNA props instead of just for layers ones...
March 11, 2014, 19:46 (GMT)
fix compile error on MinGW32
March 11, 2014, 18:56 (GMT)
Fix T39033: Regression, duplicating proxy loses proxy

fix for bug making duplicates real effected copying scenes and linked duplis.
March 11, 2014, 17:32 (GMT)
OSX/bullet: add -O2 to bt_cxx_flags, in cmake thats default, in scons CXXFLAGS start empty also in �??Release�?
March 11, 2014, 16:39 (GMT)
CMake: add fastmath for gcc release flags (OSX had already)
March 11, 2014, 16:38 (GMT)
NDOF: enable orbit sensitivity menuitem outside 3d view

The color picker uses.
March 11, 2014, 16:34 (GMT)
OSX/bullet: do a last fix for scons. Now in both buildsystems the used flags are in sync for OSX
March 11, 2014, 15:58 (GMT)
Fix for own rB6919ffbf4b2f (we only consider unit scale when we do use a unit system!).

Noted by Campbell, thanks!
March 11, 2014, 15:38 (GMT)
Fix T39112: increment snap does not work in perspective view at 0.01 scale (for scene and grid floor)

In case of "floor" grid (i.e. perspective views), unit_scale correction was not applied...
March 11, 2014, 15:08 (GMT)
Fix for missing 'field-of-view angle' property for a panoramic camera.
March 11, 2014, 14:56 (GMT)
OSX/cmake: tentative fix for T38746, conflictting flags somewhere
March 11, 2014, 14:22 (GMT)
Fix T39028: Quadview views inaccessible with python except bottom right view.

Expose all four quadviews in a collection in RNA API.

Note the region returned by old region_quadview property is now region_quadviews[2].
Revision a6bdad6 by Lukas Toenne
March 11, 2014, 13:58 (GMT)
Fix T39080: copy-to-selected operator fails for pointer properties.

The copy-to-selected operator for RNA buttons uses paths for copying
object pointer properties. Copying other ID data blocks is deliberately
disabled:
https://developer.blender.org/diffusion/B/browse/master/source/blender/editors/interface/interface_ops.c$274

However, the RNA_path_resolve_full function is not properly working for
retrieving pointer properties: it always will dereference pointer
properties in anticipation of further path elements.

In fact the return value of RNA_path_resolve_full has a conflicting
double meaning. It returns `false` when
* the RNA path is invalid
* any of the pointer properties is NULL

This means that it is not capable of returning pointer properties at all.
To make this possible, there is now an internal function for path
parsing, which returns false //only// if the the path is invalid.
On top of this there are 4 wrapper functions for retrieving either
actual property values (RNA_path_resolve, RNA_path_resolve_full) and for
retrieving pointer+property pairs (RNA_path_resolve_property,
RNA_path_resolve_property_full). The latter 2 variants will **not**
dereference pointer properties at the end of the path, so callers can
actually get the property itself. The `***_full` variants include an
array index return value.

Differential Revision: https://developer.blender.org/D396
March 11, 2014, 13:56 (GMT)
Fix T39029: Blender Internal: Render tiles do not appear until render is finished if Save Buffers enabled
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021