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
2016-02-15Cleanup: rna_main_api: use macro to define tag() and is_updated rna functions.Bastien Montagne
2016-02-15Fix white balance, was doing unnecessary linear conversionsCampbell Barton
This made byte & float images behave differently, where other modifiers remain the same. Also remove scene from the modifier (should have been passed as arg but no longer needed).
2016-02-15Compositor: Re-consider the way how track speed worksSergey Sharybin
Based on an user feedback, previous implementation with providing decoupled X and Y speeds didn't work in production at all: there is no way to combine this speeds to an usable vector. So now we're providing speed vector output instead, which provides speed in an exactly the way Vector Blur node expects it to be: first two components is a speed from the past, second two components defines speed to the future. Old behavior can be achieved by RGBA separating the speed output and using first tow components. Now this speed gives quite the same results as a speed pass, with the only difference that track position speed uses "shutter" of 1 while pass uses shutter of 0.5 (and there's no way to affect on that?).
2016-02-15Fix for Python executable not being found on LinuxCampbell Barton
Python name could include ABI-flags after the version, since checking for all combinations of ABI flags can expand into many possibilities, take the executable name from the build system.
2016-02-15Uber-picky: Too small margin in tooltipJulian Eisel
Minor design detail, but kept bugging me :) Was removed in rBd57847ca5b9.
2016-02-14Fix T47405: subsurf triangulation was producing incorrect normals after last ↵Brecht Van Lommel
fix.
2016-02-14Cleanup: bracesSergey Sharybin
2016-02-14Compositor: Cleanup, don't shortcut float valuesSergey Sharybin
Use 0.0f instead of 0.f and so on.
2016-02-14Fix T47405: subsurf inconsistent triangulation in OpenGL compared to applied ↵Brecht Van Lommel
modifier and render.
2016-02-14Fix T45606: cycles multires tangent space normal map bake issues.Brecht Van Lommel
2016-02-14Fix T47404: Bones get draw fat line in pose modeJulian Eisel
Removed this glLineWidth call in rBe8d7a0206e99, thought it wasn't needed. Really hope this was the last line width issue for now :/
2016-02-14Fix crash when cancelling cycles bake in some cases.Brecht Van Lommel
2016-02-13Sculpt: avoid double-hash for pbvh buildingCampbell Barton
Gives minor speedup entering sculpt mode and with undo.
2016-02-13Optimize sculpt undo, avoid redundant updatesCampbell Barton
On undo, sculpting regular meshes would update _all_ GPU VBO's. Avoiding the update gives noticeably faster undo. This is also a fix/workaround for strange behavior with NVidia's driver (T47232), Where locking and unlocking all buffers for updating slows down redraw speed permanently after the first undo. However the problem isn't avoided entirely since a single brush stroke might modify most of the mesh.
2016-02-13BLI_bitmap: add flip macroCampbell Barton
2016-02-13Set alpha clip to lower valueCampbell Barton
Workaround for T46962 still works
2016-02-12Fix/workaround compilation error in ddsSergey Sharybin
CLAMP was conflicting between Common.h and BLI_utildefines.h Ideally we would use macro from BLI, but it's a bit involved change to make it working with C++, will keep it for later.
2016-02-12Fix error in bvhtree_walk_dfs_recursiveGermano Cavalcante
2016-02-12Fix: OSX - Cmd + A doesn't work for Font objects editingDalai Felinto
Since Cmd + A works elsewhere, it should work during font objects editing as well. There is still a mysterious issue with Cmd + Z not working for UNDO the edited text in OSX (probably GHOST related).
2016-02-12Integrate font objects copy/paste with system clipboardDalai Felinto
When pasting text, the style (bold, material, ...) is maintained, if it was originally copied from Blender. This fixes the issue of missing copy/paste options for font objects (they were present back in Blender 2.49) Reviewers: Severin, campbellbarton, brecht
2016-02-12Fix crash in bvhtree.FromPolygonsCampbell Barton
2016-02-12Fix T47379: crash appending materials with node trees.Brecht Van Lommel
2016-02-11Fix more cases where gpencil thickness controls line thickness of 3D view ↵Julian Eisel
elements We now simple set glLineWidth to 1 once before drawing objects. This way we don't have to do it all over. Fixes T47396.
2016-02-11Fix T47387: Cycles Point Density Render IssuesSergey Sharybin
2016-02-11Fix T47378: Separate images popup UI does nothingCampbell Barton
Use confirm popup instead of redo popup
2016-02-11Fix for cursor not being reset on file loadCampbell Barton
caused by 6081f6c3
2016-02-11correct error in last commitCampbell Barton
2016-02-11Disable bmesh-boolean modifier for 2.77 releaseCampbell Barton
Edit-mode boolean is still available
2016-02-11Fix T47389: WPaint + texture entirely transparentCampbell Barton
2016-02-11BLI_kdopbvh: test root node before traversingGermano Cavalcante
2016-02-11Cleanup: naming for NearestRayToAABB_PrecalcGermano Cavalcante
2016-02-11Fix camera border controlled by gpencil thicknessJulian Eisel
This only happened when looking through camera which is only selected object. Reported @quollism, thanks :)
2016-02-10Fix T47382: incorrect tooltip for mirror tool in object mode.Brecht Van Lommel
2016-02-10Cleanup: remove unused radius argumentCampbell Barton
2016-02-10Docs: use doxygen sectionsCampbell Barton
2016-02-10Fix T47332: Face select masks display glitchCampbell Barton
2016-02-10Outliner: omit active-unselected in "Selected" viewCampbell Barton
This isn't selected, so misleading to include in selection list.
2016-02-10Docs: minor comment edits to smallhashCampbell Barton
2016-02-10Tweaks to the comments of smallhashSergey Sharybin
Collaboration between russki guy working from Netherlands and ausie bloke working from Australia (not Austria).
2016-02-10Cleanup: double promotionCampbell Barton
Also remove null checks from args with non-null attribute.
2016-02-10Fix screenshot adding image extension after .blendCampbell Barton
2016-02-10Node Editor: Another missing glLineWidth resetJulian Eisel
Caused too thick outlines around nodes and around preview image in node.
2016-02-10Fix T47377: Newer file crashes at render on official 2.76b versionSergey Sharybin
Really annoying bug, the code was not forward compatible at all and resulted in crash. And it is really good to keep at least one release forward compatibility so possible regressions could be verified easily. The idea now is to use new property name for the pixel filter type, but keep old property around for a couple of releases, so we have at least some forward compatibility. Don't like this situation at all, but seems it's least of the evil we can choose. Thanks Brecht for the review!
2016-02-10Fix manipulator drawing width controlled by gpencil thickness!1!!Julian Eisel
2016-02-10Fix curves drawn with wrong line widthJulian Eisel
Selected/Active curves were drawn with too high line width in Object mode.
2016-02-09Fix T47339: Unified color not used w/ radial controlCampbell Barton
2016-02-09Fix T47366: Single slope linear curve was wrongly using vector handleSergey Sharybin
Vector handle is only required for a symmetric curve to give nice a /\ shape. Single slope curves better to use AUTO handle by default.
2016-02-09Add BLI_bvhtree_walk_dfs utility functionGermano Cavalcante
This generic function allows callers to walk the tree using callbacks to define behavior.
2016-02-09BLI_kdopbvh: expose bvhtree_kdop_axes arrayCampbell Barton
So future callbacks can make use of the axis index.
2016-02-09Fix T47371 - add access to 'static' enum items.Bastien Montagne
Some dynamic enums, which do not need a valid context pointer, have their 'itemf' callback always called. This is annoying for introspection tools (like the ones generating translations, or API documentation), because it means they never have access to all possible options (enum items). So now, there is also an `enum_items_static` accessor to get only statically-defined enum items. Note: only i18n tools take advantage of this currently, others are still to be updated. Reviewers: campbellbarton, sergey Differential Revision: https://developer.blender.org/D1782