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
2014-05-28FCurve: Setting extrapolation needs to recalc handlesCampbell Barton
2014-05-28Fix 40343: Using replace mesh (e.g., LODs) on a skinned mesh crashes.Mitchell Stokes
Need to use parent->AddRef() in a few places.
2014-05-28BGE: Accidentally committed some debug code in 8dafbe.Mitchell Stokes
2014-05-28BGE cleanup: Removing some potential memory leaks from KX_NavMeshObject when ↵Mitchell Stokes
it fails to build a navmesh.
2014-05-28BGE cleanup: Remove unused KX_TrackToActuator::m_tracktime member.Mitchell Stokes
2014-05-28Fix T40362: Projected texture from spotlight doesn't scale with spotsize ↵Mitchell Stokes
when changed in-game via Python GPULamp::winmat needs to be updated after the spot size has changed.
2014-05-28Fix T40387, image api save and pack did not fire notifiers.Antony Riakiotakis
2014-05-27Fix T40344: Levels of Detail not smooth with Armature ModifierMitchell Stokes
Due to skinning changes for multi-threaded animations, the LOD check was being done after skinning. Now the LOD check is run before animations. This means the culling information is a frame old, but this should be fine.
2014-05-27Cycles: new camera_direction_from_pointDalai Felinto
Reviewers: brecht Differential Revision: https://developer.blender.org/D556
2014-05-27fix T40375 Glossy shader bakes different than renderDalai Felinto
Comments from Brecht Van Lommel: """ Currently the viewing direction for each pixel is set to the normal, so at every pixel glossy is evaluated as if you're looking straight at it. Blender Internal works the same. """ This patch makes baking glossy as viewed from the camera. Reviewers: brecht CC: zanqdo Differential Revision: https://developer.blender.org/D555
2014-05-27Cycles CUDA: use fewer registers for sm_50 cards for better performance.Brecht Van Lommel
2014-05-27Fix T40379: world MIS causing too much CUDA memory usage.Brecht Van Lommel
The kernel for baking the world texture was the same as the one used for baking. Now that's separate which allows the kernel to reserve much less memory.
2014-05-27Revert fix for T38594, caused T40186 (just accept limitation for now)Campbell Barton
2014-05-27PIL_time is no longer used in BLI_random.Lukas Tönne
The last remnant of using the system time for random seed was removed in rBafb4b65, now seeds are always explicit for BLI_random.
2014-05-27Fix T40373: Adding movie creates overlapping audio stripsCampbell Barton
2014-05-27Correct ortho_v2_v2 arg sizeCampbell Barton
2014-05-27BSD's was using too many build threads for convenience makefileCampbell Barton
D431 from Aaron Peterson
2014-05-26fix T40322: Glitch in baking a mixed SSS shaderDalai Felinto
2014-05-26Usual UI messages tweaks.Bastien Montagne
2014-05-26Attempted fix for T40363: CUDA 30% slowdown in testbuilds compared to 2.70.Brecht Van Lommel
CMake had this --fast-math flag but scons not, makes a big difference on some files. Slightly slower rendering might still happen though, but it should not be this much.
2014-05-26Fix for curve map-taper being greyed out incorrectlyCampbell Barton
2014-05-26Fix T40223: Errors in bevel_factor_mapping_start/endCampbell Barton
Initial patch by Lukas Treyer with own fixes added
2014-05-26Fix for out of bounds read calculating spline mappingCampbell Barton
2014-05-26Curve Mapping: disable for cyclic curves (it doesn't make much sense and is ↵Campbell Barton
buggy)
2014-05-26Fix for out of bounds reads with curve bevel mappingCampbell Barton
2014-05-26Fix T40345: cycles volume render + AO pass not working correct.Brecht van Lommel
2014-05-26Fix T40306: cycles baking not distributing work among CPU cores well.Brecht van Lommel
2014-05-26Fix T40315: Boolean modifier with Freestyle edgesSergey Sharybin
2014-05-26Fix T40354: Camera Tracks in the Dope Sheet can't be deselectedSergey Sharybin
2014-05-26Fix T40359: Scene / Color Management: White Point Mapping Has LimitSergey Sharybin
2014-05-26Fix for a missing code update in my commit rB08528f577dcb.Tamito Kajiyama
2014-05-26Workaround T40317: Ghost/Win32 keys sticking for new windowsCampbell Barton
Ghost win32 ignores key-up events for newly activated windows. for now just disable code for win32 to initialize modifiers for new windows.
2014-05-26Fix for thinning strokes at intersections between visible and background ↵Tamito Kajiyama
hidden lines. This commit is intended to fully fix the problem described in https://developer.blender.org/T36425#19 (see also the previous commit rB08528f577dcb). Addition of a small offset (to avoid singularity in stroke rendering due to overlapping vertices) was not performed for all overlapping vertices. Removed the StrokeCleaner and related helper functions which were added as a temporary workaround in rB2a5b6d9c8f16.
2014-05-26Fix for BLI_delete failing on files containing quotesCampbell Barton
2014-05-26Fix curve switch direction ignoring active vertexCampbell Barton
2014-05-26EditCurve: Replace -1 with CU_ACT_NONE defineCampbell Barton
2014-05-26Fix for curve having invalid active vertex after setting typeCampbell Barton
also allow passing NULL vertex to BKE_curve_nurb_vert_active_set
2014-05-25Fix Sequencer OpenGL render ignoring preview channelCampbell Barton
2014-05-25Freestyle: Partial fix for thinning strokes due to flipping stroke ↵Tamito Kajiyama
directions at TVertices. A description of the problem is found in https://developer.blender.org/T36425#19 . The cause of the issue was identified as roudning errors in Operators::createStroke() due to insufficient numerical precision. Precision promotion from float to double was done in the return values of getPoint3D/2D methods in Interface0D and its subclasses in C++ (data members stored in the 0D classes have already been in double precision).
2014-05-25Fix T40438: Pressing G key to move the camera quits Blender.Bastien Montagne
2014-05-24Revert "Cycles-Bake: fix T40322 Glitch in baking a mixed SSS shader"Dalai Felinto
This reverts commit 81b129d3b837e31c0d6d2a9d2a6e39d39e47c1ec. This is not the correct fix yet. More details in T40322
2014-05-24Fix T40331: Incorrect display of path of editted data.Bastien Montagne
2014-05-24msvc 2008 platofrm suffix changed to be -vc9Martijn Berger
2014-05-24Cleanup: Comments and unused variables.Thomas Dinges
2014-05-23Some operation allowed to set invalid active scene render layerSergey Sharybin
Forbid this now and do tricks in the versioning code to repair corrupted files. Thanks to Pablo, Caminandes and Koro for discovering this bug!
2014-05-23Fix crash rendering linked scenes in compoSergey Sharybin
Simply linking scene (lib.blend) without compo into another one (compo.blend), using it in a compositor and rendering it would crash.
2014-05-23Fix T40320: wrong render layer visibility with cycles deformation motion blur.Brecht Van Lommel
2014-05-23Optimization of keying clip operationsSergey Sharybin
Gives around 20%-30% speedup by doing early exit from kernel traversal cycle.
2014-05-23Report to the console when custom ocio config is usedSergey Sharybin
2014-05-23Fix T40325: Part IIBastien Montagne
Use same cursors for GRIP buttons as for window resize e.g.