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-03-24Fix crash using removed data as function argumentsCampbell Barton
2015-03-24Fix RNA active spline assignmentCampbell Barton
2015-03-24Fix T44027: Normal Edit Mod : Radial from object normals affected by target ↵Bastien Montagne
object scale. The way we were getting diff to apply to vcos from target object was just bad! Also, fixed another related issue - negated scale would be clamped to nearly zero, now only consider absolute version of size (we do not care about its sign here anyway). This should be backported to 2.74 (with previous commit too).
2015-03-24BLI math vec: add 'abs' functions to get absolute values of a vector.Bastien Montagne
Unseful when handling e.g. scale, sometimes.
2015-03-24Fix T44020: Crash exporting fluid sim to fbxSergey Sharybin
The issue is coming from wrong fluid modifier copy callback, which might have left some pointers shared across original and target fluid modifiers.
2015-03-24Fix T44021: Crash switching Rendering Engines while viewport rendering + ↵Sergey Sharybin
animating Make sure preview render job is cancelled before freeing the render engine associated to the viewport.
2015-03-24Make sure disabling attribute arrays also resets the counter so we don'tAntony Riakiotakis
do it twice.
2015-03-24Fix T43853: Audio animation bug (fcurves)Jörg Müller
For a detailed bug explanation see the comments in the report.
2015-03-17Point submodules to 2.74-rc2v2.74-rc2Sergey Sharybin
2015-03-17Fix an incorrect assert in lnor code.Bastien Montagne
There is one case where we do can have only two edges for two loops...
2015-03-17Refer to Task 43975: Deleting a Shapekey can break the relative pointersGaia Clary
This patch would reassign the relative of all keyblocks to the relative of the deleted keyblock. And it fixes the misalignement of the index values after the keyblock is deleted. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1176
2015-03-17Use "Release Candidate 2" string on the splashSergey Sharybin
2015-03-17Correct assertCampbell Barton
2015-03-17Fix T43997: Paste fcurve keeps handle selectionCampbell Barton
2015-03-17PyAPI: bpy.ops enum error was cut shortCampbell Barton
2015-03-17Update themes for 2.74Campbell Barton
2015-03-17Fix T44003: Flatty Light: GPencil vertices and timeline keyframes blackJulian Eisel
I noticed our version code and subversion got out of sync in the past, maybe that's what the issue was here. Deleting the entries from the .xml makes it fall back to the default values.
2015-03-17BGE: Fix for T43994 Steering actuator bug with NavmeshJorge Bernal
Now the facing option is taken into account as before This is a regression and to be ported to the final release branch.
2015-03-17Fix T43959 jittering in 2D texture painting.Antony Riakiotakis
This is still not perfect, but should work smoother now. Previously there was visible wobbling while painting. This can be included in final release.
2015-03-17Revert "Fix T43865: Cycles: Watertight rendering produces artifacts on a ↵Sergey Sharybin
huge plane" The fix was really flacky, in terms during speed benchmarks i had abort() in the fallback block to be sure it never runs in production scenes, but that affected on the optimization as well. Without this abort there's quite bad slowdown of 5-7% on the renders even tho the Pleucker fallback was never run. This is all weird and for now reverting the change which affects on all the production scenes and will look into alternative fixes for the original issue with precision loss on huge planes. This reverts commit 9489205c5c0b9b432d02be4a3d0d15fc62ee6cb9.
2015-03-17Fix T43974: Alpha output of movie clip node crashes blenderSergey Sharybin
Issue was caused by a bug in the memory optimization commit, should be backported to the final release branch.
2015-03-17Partial fix for T43967: Background is wrong in 2.74Sergey Sharybin
Was missing do-versions code after rotation order change in Cycles. This is a regression and to be ported to the final release branch.
2015-03-11Point submodules to RC1 tagsv2.74-rc1Sergey Sharybin
2015-03-112.74 splashCampbell Barton
by Manu Järvinen
2015-03-112.74 release: update HTMLCampbell Barton
Also remove unneeded metadata
2015-03-112.74 version bumpCampbell Barton
2015-03-11Fix really stupid issue reported by Campbell, code retry to renderAntony Riakiotakis
without VBOs would return prematurely and leak.
2015-03-11Fix typo in RNA definition of "shape_key_add"Philipp Oeser
Reviewers: sergey Reviewed By: sergey Differential Revision: https://developer.blender.org/D1167
2015-03-11Fix 8bit BMP palette readingCampbell Barton
part of D1173 by @rdb, load BGR -> RGB
2015-03-11Fix flip node making unsigned int out-of-rangeCampbell Barton
2015-03-11Cleanup: styleCampbell Barton
2015-03-11Cleanup: indentationCampbell Barton
2015-03-11Fix T43342 bad rendering of normal maps on NVIDIAs on the MacOSAntony Riakiotakis
This is not limited to normal maps, it's just that normal maps cause a mix of interleaved vertex arrays + non interleaved vertex arrays + GLSL, which could confuse the GL. Possible explanation is that it may be clobbering the vertex index of the shader somehow but this is difficult to know without extensive tests and the Mac is needed by Francesco in the morning :). Do brute force solution instead, just force legacy drawing on Macs when VBOs is off. On the plus side VBOs work fine, so we should be fine when we update.
2015-03-10Fix T43831: Image Editor: Render info not displayedSergey Sharybin
Issue was caused by b62c2a9 and root of it goes to the fact that text info is stored in the "main" scene, not the currently rendering one. This is a bit annoying but making it so text and result are coming from the same scene is a bit dangerous to do now. Will re-visit this change after the release and see if it might be done in a more clear fashion.
2015-03-10Fix T43953, make opengl render work like before, basically, if we renderAntony Riakiotakis
transparent, it will render sky/transparent, regardless of the "show world setting".
2015-03-10Fix memory leak when using two bump maps on the same materialAntony Riakiotakis
2015-03-10Fix T43887: Quick Fur duplicate particle system on editSergey Sharybin
Forbid add quick fur operator from adding fur to objects in edit mode. Fur is not visible for them anyway and because of local undo stack used in edit mode tweaking values of this operator does not lead to proper operator redo.
2015-03-10Tests: Print counter with operator testCampbell Barton
2015-03-10Fix crash in mesh data transferCampbell Barton
2015-03-10Fix crash extruding an empty curveCampbell Barton
2015-03-10Fix crash enabling dyntopo in background modeCampbell Barton
2015-03-10Fix T43941: Grease pencil eraser outline vanishesCampbell Barton
2015-03-09Fix for yet another assert fail of particle dmcache index.Lukas Tönne
This is totally broken, just making sure Blender does not crash and devs can investigate other issues that are actually fixable.
2015-03-09Attempt to fix T43919, avoid using GPU_framebuffer_slots_bind just inAntony Riakiotakis
case a system does not support drawing to many framebuffers.
2015-03-09Fix T43674: Smoke collision does not detect obstacles reliably.Lukas Tönne
The smoke obstacle detection was using a maximum distance for BVH checks to find mesh elements that define boundary cells in the grid. This BVH test was using an arbitrary value of 0.6 cell units. It should be `sqrt(3)*0.5` to account for the maximum possible distance of mesh elements inside a cell. Otherwise some cells that should form the boundary are not detected as such (no closest mesh element found inside the radius), so you get gaps in the smoke obstacle.
2015-03-09Fix T43937: Changing Texture Brush doesn't update toolbarJulian Eisel
2015-03-09Fix T43872: Adding a constraint to a bone of a proxy armature resets all ↵Bastien Montagne
bones' transformations. Temp hack for until new depsgraph is here. Thanks the Joshua and Sergey for their help.
2015-03-09T37832: OpenCL compositing bug in defocus nodeSergey Sharybin
The issue seems to be caused by the integer overflow. It's actually still needed to investigate why exactly buffer contained such a huge value, but the patch is still legit and seems to be solving the issue just nicely.
2015-03-09Image Space: enable zoom/cursor warpingCampbell Barton
2015-03-09Fix T43891: Skin modifier inverts some facesCampbell Barton