Revision 00bbf5a by Sergey Sharybin June 26, 2012, 10:18 (GMT) |
Fix issue with resetting active nurb when sawing from edit mode Issue was caused by loading editNurb into normal nurbs when saving, this used to set active nurb to NULL. This isn't actually needed, because active nurb would be set properly on making editNurb and even if one accessed to active spline via PY API when object is in object it'll be completely harmless. |
Revision c55c194 by Campbell Barton June 26, 2012, 10:17 (GMT) |
svn merge ^/trunk/blender -r48305:48307 |
Revision 79ab7f9 by Campbell Barton June 26, 2012, 10:14 (GMT) |
mask and grease pencil now display in the dope sheet summery |
Revision 58e5ce4 by Sergey Sharybin June 26, 2012, 09:48 (GMT) |
Revision cd6ed0b by Sergey Sharybin June 26, 2012, 09:46 (GMT) |
Optimization of keying screen node When creating tile data include only triangles which have got intersection with tile's rectangle only. This saves quite a lot of per-pixel iterations through triangles which simply can not affect on current tile. In fact, it's AABB check is used here. It could be improved further, but it'll slowdown tile data generation with questionable speedup. Another major slowdown is in fact caused by voronoi triangulation code. Currently it's used naive algorithm which is O(N^2) where N is number of edges. Added few euristics there and removed unused part of code, which gave quite noticeable speedup already. This could be improved further, but this node is not ment to be used for lots of markers. It's also generates wrong triangulation when there're many sites used. Need to be investigated further. |
Revision bf19327 by Campbell Barton June 26, 2012, 08:25 (GMT) |
fix for checking wrong flag with removing mask shape keys doubles on the dope sheet. |
Revision 6a58afa by Campbell Barton June 26, 2012, 07:44 (GMT) |
svn merge ^/trunk/blender -r48288:48302 |
Revision d4cfdc6 by Campbell Barton June 26, 2012, 07:32 (GMT) |
quiet all -Wshadow warnings in the compositor. |
Revision 69ab13a by Campbell Barton June 26, 2012, 07:09 (GMT) |
rename remaining class members with m_ prefix. |
Revision 6a1d824 by Campbell Barton June 26, 2012, 01:22 (GMT) |
use m_ prefix for compositor class members (all compositor operations). |
Revision 7a0ab62 by Joshua Leung June 26, 2012, 00:35 (GMT) |
Bugfix [#31930] DopeSheet - Grease Pencil mode collapses visible channels when switch channel This was caused by a typo, which would end up toggling the expanded status of the Grease Pencil datablock (gpd->flag & 4) instead of the layer active status (gpl->flag & 4). |
Revision 41e2565 by Sergey Sharybin June 25, 2012, 19:52 (GMT) |
Revision 01dea9f by Sergey Sharybin June 25, 2012, 19:48 (GMT) |
Fixed crash when trying to perform transformation in Clip Editor without clip opened Reported by JumboCoDeC in IRC. Thanks for the report. |
Revision 4da7b70 by Campbell Barton June 25, 2012, 19:42 (GMT) |
make hue correct grid more faded out. |
Revision 57a57c4 by Campbell Barton June 25, 2012, 18:03 (GMT) |
svn merge ^/trunk/blender -r48276:48283 |
Revision fa0c5a1 by Campbell Barton June 25, 2012, 18:01 (GMT) |
fix for crash with blur - happened most when there was a size input, need to mutex lock before allocating the gauss array. also add suspiciously missing call to BlurBaseOperation::initExecution, X had but Y was missing. |
Revision 6badc77 by Jeroen Bakker June 25, 2012, 17:27 (GMT) |
code cleanup |
Revision 2e7f7d1 by Jeroen Bakker June 25, 2012, 17:26 (GMT) |
fix for [#31899] Compositor: scale to rendersize doesn't work on separate channels |
Revision 0ec6d28 by Campbell Barton June 25, 2012, 17:09 (GMT) |
correct free command for an array in the compositor |
Revision 8f53bd0 by Sergey Sharybin June 25, 2012, 16:37 (GMT) |
|