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-19Fix T40240: Bug with render region with maya short cutSergey Sharybin
2014-05-19Fix compilation error on kFreeBSDSebastian Ramacher
2014-05-19Show warning when hiding a proxy boneSergey Sharybin
It can't be undoe with Ctrl-Z, but Alt-H works just fine. So instead of breaking someone's workflow let's just add an info about how to bring bones back.
2014-05-19Fix T39764: cycles not rendering EXR image textures with 5 channels (RGBA + Z).Brecht Van Lommel
2014-05-19Style cleanupCampbell Barton
2014-05-19Fix T40135: cycles baking did not support branched path settings yet.Brecht Van Lommel
2014-05-19Code refactor: move branched path AO and SSS code into functions.Brecht Van Lommel
2014-05-19Code refactor: rename kernel_displace.h to kernel_bake.h.Brecht Van Lommel
2014-05-19Fix T40195: cycles smoke + persistent images animation render not working ↵Brecht Van Lommel
correct.
2014-05-19Fix T40194: cycles deformation motion blur not working with curves + shape keys.Brecht Van Lommel
2014-05-19Fix T40242: 3D view background images incorrectly shown during viewport render.Brecht Van Lommel
Now they are shown when they are also visible in other draw modes.
2014-05-19Remove two unnecessary includes.Nathan Letwory
2014-05-19Move ShadingSystem enum to shader.hNathan Letwory
Add SHADINGSYSTEM_ to enum member names, so it is clear where they are from. Revert BVHType enum changes, as there's no need for code dedup here.
2014-05-19Move BVHType and shadingsystem enums to top-level of Cycles namespace.Nathan Letwory
Easier access of BVHType and deduplication for ShadingSystem. Reviewers: dingto, brecht Differential Revision: https://developer.blender.org/D534
2014-05-19This reverts commit d1526da787fba050391747a9286f9e0521c6f2d1.Campbell Barton
If tweaking is done by accident, user better increase threshold in preferences.
2014-05-19Workaround T40241: Vertex snapping snaps to wrong placeCampbell Barton
2014-05-19Correct ARRAY_SIZE macro and make doxy comments consistentCampbell Barton
2014-05-19Fix T39897: shape keys created while the Relative checkbox is unchecked ↵Bastien Montagne
start out with frame=0 So! First, frame for absolute shape keys: never allow a new key to have the same pos as an existing one (this does not make sense). This way, the two workflows are possible (create all keys and then animate ctime, or animate ctime and then create keys where you need them). Also, fixed UIList for shapekeys, the "absolute" test was wrong, and better to show frame value, even though not editable, than nothing in case of absolute keys. And finally, add getter to RNA 'frame' readonly value, so that we output real frame values, and not dummy internal ones (which are /100) in our API.
2014-05-18Fix T40251: Rename of Shape key is not redrawed in Dopesheep.Bastien Montagne
2014-05-18Fix T40201: Keyframe edits fail to update the viewportCampbell Barton
2014-05-18Comment unused BLI_rebase_pathCampbell Barton
2014-05-18Add ARRAY_SIZE macro to check fixed size arraysCampbell Barton
2014-05-18Promote MSVC 2013 to be the official platform (without a numbered suffix) ↵Martijn Berger
for scons
2014-05-18Fix BLI_cleanup_path: '.' at the start of a pathCampbell Barton
On windows "." was replaced with the root directory. On other systems any path starting with a '.' would be replaced with "/" This was added for the file selector only, so better handle this in the file selector (though it looks not to be needed).
2014-05-18Fix T40246: Speaker Object is missing from Tabs > 'Create' tab in the Toolbar.Bastien Montagne
2014-05-18Update netbeans projectfile generator to v8Campbell Barton
2014-05-17Fix T40230: Recursion check when adding objects to groups is incorrect.Lukas Tönne
rB568f0c7 added a recursion check that is supposed to prevent cyclic cases where a group includes itself via dupli instancing. The check function was descending into all groups nested inside the target group - which works for single level recursion like in the test case, but does not handle generic recursion. Basically it asked: "is object X in the group already or in any instanced dupligroup?" The new check instead asks: "is group G dupli'd by X or any instanced subgroup thereof?" which is what we really need to know.
2014-05-17Fix T40236: Undo not pushed in old-school node curve tool button functions.Lukas Tönne
2014-05-17Fix T39757: missing cuda libary on linx, now also try to find libcuda.so.1.Brecht Van Lommel
I'm not sure this should be needed, but some particular systems don't have libcuda.so so we do this now.
2014-05-17Fix T39757: missing cuda libary on linx, now also try to find libcuda.so.1.Brecht Van Lommel
I'm not sure this should be needed, but some particular systems don't have libcuda.so so we do this now.
2014-05-17Text 3D: remove hardcoded keymaps from menuCampbell Barton
2014-05-17Revised the debug code added in the commit rB4958aff780a3 according to the ↵Tamito Kajiyama
raised concern.
2014-05-17Fix T40231: Crash with matcapsCampbell Barton
2014-05-17Fix mistake in recent patchCampbell Barton
2014-05-17Minor changes for standalone mathutilsCampbell Barton
2014-05-17Freestyle: Added a piece of debug code for checking the consistency of face ↵Tamito Kajiyama
normals. The code was found helpful while addressing T39669 and might help solving similar issues related to face normals in the future.
2014-05-17Fix T39669: Freestyle: Curve with extrude>0 causes warnings in console.Tamito Kajiyama
The reported Freestyle warnings were due to wrong normals of filled faces at both ends of a 2D extruded curve. The problem is detailed in the comment #19 of T39669. The cause of the bug was an inconsistency in the use of vertex indices between BKE_mesh_nurbs_displist_to_mdata() and init_render_curve() in the case of DispList::type equal to DL_INDEX3. This commit also fixes a related bug that the normals of filled faces were not inverted when a scale of the curve object is set to a negative value (e.g., the Z scale was -1). Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D532
2014-05-16Fix T38895: Unstable behavior using VehicleWrapper after Bullet 2.82 updateMitchell Stokes
The Bullet 2.82 update uses a different method for ray casting that seems incompatible with our older files. So, for now we just force the vehicle physics to use the older ray casting method.
2014-05-16Fix T40223: Setting bevel_factor_mapping_start/end crashesCampbell Barton
Patch from Lukas Treyer
2014-05-16Fix T40226: Keep collapse-menu when splitting areasCampbell Barton
2014-05-16Fix Bevel bugs T39726 and T39108, bevels with wire edges.Howard Trickey
This updates the fix in rB27db75363, which had to be undone because it broke other bevels. It also fixes cases where edges went away went doing vertex bevel on vertices with some wire edges.
2014-05-16Fix T40202: File selector operators not reported in info viewCampbell Barton
2014-05-16Add assert to check for buffer overrunCampbell Barton
2014-05-16Freestyle: Fix for texture spacing reset to a non-default value on load of ↵Tamito Kajiyama
old .blend files. Problem report by Light BWK through personal communications. Thanks!
2014-05-163D Text: Change textbox placement to ignore font scaleCampbell Barton
Logic here was very stupid, texboxes would have their initial locations scaled by font size but not their width/height. Now its possible to change font size while keeping the textbox layout. Other fixes - tab character didn't work properly with textboxes. - memory leak when VFontData was missing.
2014-05-16Fix part of T39708, don't overupdate particles when changine activeAntony Riakiotakis
particle texture slot
2014-05-163D Text: replace multiple float arrays with struct (much easier to understand)Campbell Barton
2014-05-16BGE Physics: Better follow the old (pre-cleanup) logic for determining ↵Mitchell Stokes
bounds types. This prevents older files from breaking.
2014-05-16Fix T40214: Wrong size calculation on new curve objectsBastien Montagne
Do not take into account grid size in objectdata creation itself, this is handled on a higher level.
2014-05-16Use warning instead of info for previous commitAntony Riakiotakis