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-03-02Found another place where nproc can be usedLawrence D'Oliveiro
/proc/cpuinfo is a Linux-specific thing. Using GNU [[ http://www.gnu.org/software/coreutils/manual/html_node/nproc-invocation.html | nproc ]] should be more portable. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D377
2014-03-02Cycles: remove ccl_align macro for GPU as unused and unsupported in OpenCLSv. Lockal
2014-03-02Fix for collapse ignoring pinned panelsCampbell Barton
2014-03-02Fix T38873: Crashing on undo of ocean modifier.Bastien Montagne
Issue of this bug is that most part of fftw is not thread safe, only compute-intensive fftw_execute & co are. Since smoke was affected by this issue as well, a global fftw mutex was added to BLI_threads. Audaspace also uses fftw in one of its readers (AUD_BandPassReader.cpp), but this is not an issue currently since this code is disabled in CMake/scons files. There was another threading issue with smoke, we need to copy dm used by emit_from_derivedmesh(), as it is modified by this func. Reviewers: sergey, brecht Reviewed By: brecht CC: brecht Differential Revision: https://developer.blender.org/D374
2014-03-01Fix T38900: cycles OSL crash running getmessage("trace", "geom:name", name)Brecht Van Lommel
2014-03-01NDOF: add navigation modes to user preferencesCampbell Barton
also comment debug prints for raytracing
2014-03-01Fix for using non camera objects as a camera having zero area view-frameCampbell Barton
2014-03-01Fix for some unlikely memory leaks, remove redundant checksCampbell Barton
2014-03-01Resolve T38899: changes to Ctrl+Selectmouse conflict with LMB selectCampbell Barton
2014-03-01Fix for memory leak in particle brushCampbell Barton
2014-03-01Fix Snap to Symmetry failing to select the vertex from the right sideCampbell Barton
2014-03-01Fix for own error with updating view2d for NDOFCampbell Barton
2014-03-01Code cleanup: correct abs use and quiet warningsCampbell Barton
2014-03-01Fix for baked FCurve subframe interpolation (bad abs use)Campbell Barton
2014-03-01Fix for sequencer invalid rounding, double wipe at 0 angleCampbell Barton
2014-03-01FCurve Transform: scaling no longer changes hansle typesCampbell Barton
This matches 3d view and means you can change the amplitude of a curve while keeping auto-clamped handles.
2014-03-01Code cleanup: comment unused code in calchandleNurb_internCampbell Barton
Also remove outdated comments.
2014-03-01Readme: Small adjustment for IRC link.Thomas Dinges
2014-03-01Cleanup: Fix some typos in the code.Thomas Dinges
2014-02-28Partial fix for T38871, Bevel could create a far-out spike.Howard Trickey
There needed to be a check that when a newly created point is supposed to be on an edge, that it stays within the bounds of either end of the edge. This fixes the hole-in-cube example in the bug, but not the boolean modifier one, which still needs more work.
2014-02-28Fix T38887: error in (still unused) freestyle math function implementation.Brecht Van Lommel
2014-02-28Fix T38885: missing image editor paint brush updates after recent UI changes.Brecht Van Lommel
2014-02-28Fix T38881: cloth preset rubber not working with "translated data names" ↵Bastien Montagne
i18n option Actually, was broken for any custom modifier name, since it was explicitly using 'Cloth' one. Changed to mimic other cloth pressets (wonder why this one was different!).
2014-02-28Fix for transform setting T_CAMERACampbell Barton
This was only set when the camera was active, however non active cameras can be transformed too.
2014-02-28Update patch for mesh_simplifierSergey Sharybin
2014-02-28Proper solution for crash of GP when marker is not exist on current frameSergey Sharybin
2014-02-28Fix for crash copying from non RNA color buttonsCampbell Barton
2014-02-28NDOF: minor tweaks based on feedback.Campbell Barton
- invert Y axis when swap YZ is enabled. - allow rotating when not in ortho mode.
2014-02-28Crazyspace: calculate normal around a (0,0,0)Campbell Barton
instead of creating a new triangle in the models space and using that.
2014-02-28Fix Crazyspace with proportional editingCampbell Barton
2014-02-28PyAPI: correct warning with dynamic enumsCampbell Barton
2014-02-28Fix T38407: Bone roll calculation flips local axes at wrong rotation angleBastien Montagne
Just remove that rotation special case for now, at least fixes the glitch along Z axis when rotating around Y axis in report. Anyway, there is no reason for such special handling, we do not have real rotation in editbone...
2014-02-28Revert editbone roll correction changes.Bastien Montagne
This reverts commit f72acc38d 65c5be967 eff6b385e 3fe487217
2014-02-28Support planar sample formats in audio mixdownSergey Sharybin
Now libav-10 should work for output of ac3 container.
2014-02-28Fix T38872: Crazyspace could use stale derivedMesh data.Campbell Barton
2014-02-28Code cleanup: move edit-derivedmesh free to BKE_editmesh_free_derivedmeshCampbell Barton
2014-02-28Fix T38467: Animation playback is not synchronized when Screen Layout changesBastien Montagne
When both old and new screens share the same scene, "transfer" playback to new screen, else stop playback.
2014-02-28Fix T38877: F-Curve modal input is incorrect when set to Imperial units.Bastien Montagne
Using length units outside of 3dview does not make sense...
2014-02-28Attempt to fix mixdown when building without sndfileSergey Sharybin
This case was handled specially in writeffmpeg.c and seems it makes audio export happy in all cases now. TODO: libav-10 doesn't work with AC3 codec yet because this bloody library ONLY supports FLTP format and FFmpeg ONLY supports FLT. This is not fun guy, it really isn't! Where's your conscience?? CC: nexyon
2014-02-28Correction to previous commit: it was unable to change format for some ↵Sergey Sharybin
containers
2014-02-28Fix T38883: Toolbar origin buttons missing for armatureCampbell Barton
Also allow mirror for any object type
2014-02-28Fix T38768: New "audio" button in 2.70 release does not 'mixdown' audioSergey Sharybin
Issue was caused by the way how audio output works from audaspace. Now made it much closer to what's happening in ffmpeg.c and writeffmpeg.c. Also fixed issues with incompatible combinations of codecs and formats in mixdown settings.
2014-02-28Fix T38817: FCurve autoclamp errorCampbell Barton
Animating large values with auto handles didn't work well, (large variations on the Y axis would shrink handles).
2014-02-28Revert own changes to CLAMP and CLAMPIS, caused T38875Campbell Barton
2014-02-28Code cleanup: style/warningsCampbell Barton
2014-02-28Keymap: update 3dsmaxCampbell Barton
2014-02-28Fix T38876: hide area split widget in lower left of widget on OS X.Brecht Van Lommel
This is already used by the operating system for window resizing, you must use the widget in the top right of the area to split.
2014-02-28Fix use of uninitialized variable in some cases with scatter + emission volume.Brecht Van Lommel
2014-02-28Blender Internal: Bring back previous behavior that rendered viewport uses ↵IRIE Shinsuke
render visibility rather than viewport visibility. Commit 162d6c73e3d0 changed the behavior of rendered viewport to use viewport visibility, but that can cause some problems. For example, mesh deform cage is drawn as a solid/textured mesh (not a wireframe mesh) and its unnecessary surfaces and shadows mess up the preview.
2014-02-28Fix compile error when compiling without python.Brecht Van Lommel