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
2017-09-27Math Lib: Add non-clamped round_* functionsCampbell Barton
Replace iroundf with round_fl_to_int, add other types
2017-09-26Cleanup: indentationCampbell Barton
2017-09-26Cleanup: remove bounds runtime data from sceneCampbell Barton
2017-09-26Beauty fill was skipping small facesCampbell Barton
2017-09-26Fix T52871: beauty fill errorCampbell Barton
Only lock tri's facing different directions. Needed because scanfill creates zero area faces.
2017-09-26Revert "Fix T52871: `BLI_polyfill_beautify_quad_rotate_calc_ex` was ↵Campbell Barton
mistakenly considering the state as degenerated" This reverts commit a8f11f5422afa01608817755eea310e987f896be. Result is no longer symmetrical, will investigate a different fix.
2017-09-26Add missing headerCampbell Barton
2017-09-26Fix T52901: New Depsgraph - Driver using "self" needs reloading file to workJoshua Leung
2017-09-26Fix: When transforming GP strokes in "Local" mode, the strokes would get ↵Joshua Leung
obscured by the transform constraint lines Ported over e7395c75d504af2c2f720f43ea27b93e04a378e4 from the greasepencil-object branch. I should've fixed this ages ago, but couldn't figure out why at the time.
2017-09-26deps libs: fix xiph library support on sndfile on macOSArto Kitula
2017-09-25Fix T52835: When driven IK influence change, ik animation have 1 frame delaySergey Sharybin
2017-09-25Fix T52865: Improve wording of error message when saving packed images failsJoshua Leung
Make it clear that the packed file could not be saved back out to disk at the specified path (e.g. destination directory doesn't exist).
2017-09-25OpenVDB: Fix compilation error against OpenVDB 4Sergey Sharybin
One crucial thing here: OpenVDB shoudl be compiled WITHOUT OPENVDB_ENABLE_3_ABI_COMPATIBLE flag. This is how OpenVDB's Makefile is configured and it's not really possible to detect this for a compiled library. If we ever want to support that option, we need to add extra CMake argument and use old version 3 API everywhere.
2017-09-25Add an 'atomic cas' wrapper for pointers.Bastien Montagne
Avoids having to repeat obfuscating castings everywhere...
2017-09-25Tweak to fix for thread concurency in looptri generation.Bastien Montagne
Even if pointer assignment may be atomic, it does not prevent reordering and other nifty compiler tricks, we need a memory barrier to ensure not only that transferring pointer from wip array to final one is atomic, but also that all previous writing to memory are “flushed” to (visible by) all CPUs... Thanks @sergey for finding the potential (though quite unlikely) issue.
2017-09-25Cycles: Cleanup, indentationSergey Sharybin
2017-09-25Mirror Modifier: option to offset UV'sCampbell Barton
Useful for baking, so UV's can be moved outside the image and not used to bake pixels (but still used for display). D2801 by @Zuorion
2017-09-25Fix T52890: Crash unlinking sequencer soundCampbell Barton
2017-09-23Fix T52871: `BLI_polyfill_beautify_quad_rotate_calc_ex` was mistakenly ↵Germano
considering the state as degenerated
2017-09-23Cycles: Fix compilation error of OpenCL megakernel on AppleSergey Sharybin
2017-09-23Cycles: Fix compilation error of megakernel on NVidia deviceSergey Sharybin
It is more readable to explicitly compare to NULL anyway.
2017-09-23Tracking: Followup to previous fix, need to remap frame number for sequence ↵Sergey Sharybin
tracking
2017-09-23Tracking: Cleanup, reuse existing variableSergey Sharybin
2017-09-23Fix T52851: Per-frame traking is broken when sequence doesn't start at frame 1Sergey Sharybin
2017-09-23Tracking: Fix crash when tracking failedSergey Sharybin
Was a dangling pointer to a freed memory left behind.
2017-09-23Remove remaining qtcodecdataAaron Carlisle
This fixes a mistake in rBefd5e3c25401b43cbd7f909418835bb570db1ab3
2017-09-22Remove quicktime supportAaron Carlisle
It has been deprecated since at least macOS 10.9 and fully removed in 10.12. I am unsure if we should remove it only in 2.8. But you cannot build blender with it supported when using a modern xcode version anyway so I would tend towards just removing it also for 2.79 if that ever happens. Reviewers: mont29, dfelinto, juicyfruit, brecht Reviewed By: mont29, brecht Subscribers: Blendify, brecht Maniphest Tasks: T52807 Differential Revision: https://developer.blender.org/D2333
2017-09-22[cmake/deps_builder] update openjpeg to 1.5.2 to match the version in ↵Ray Molenkamp
master/extern , add support for openjpeg in oiio. Mark webp as an optional component.
2017-09-22Fix T52875: install_deps.sh - numpy-1.13.1.tar.gz - 404 Not Found.Bastien Montagne
2017-09-22Fix T52840: New Depsgraph - Mask editor not working correctlySergey Sharybin
2017-09-21build deps: add support for multiple xcode installsArto Kitula
2017-09-21Code cleanup: simplify kernel side work stealing code.Brecht Van Lommel
2017-09-21[cmake_deps/msvc] Move llvm/clang harvest to their individual cmake files.Ray Molenkamp
2017-09-21deps build: add openjpeg to OIIOArto Kitula
2017-09-21[cmake_deps/msvc] Move boost harvest to boost.cmakeRay Molenkamp
2017-09-21[cmake/builddeps] update for site-packages on windows to support the new ↵Ray Molenkamp
requests version.
2017-09-21CMake: Add extra requests dependenciesSergey Sharybin
Apparently, we already had some code to deal with this. So for now just added some extra dependencies needed for latest requests.
2017-09-22Cleanup: unused defineCampbell Barton
2017-09-213D Text: Make Ctrl Backspace/Del delete wordsCampbell Barton
Matches text-editor, console & text-button.
2017-09-21Fix T52860: 3D Text crashes w/ Ctrl BackspaceCampbell Barton
2017-09-21Install_deps: Raise python and numpy versions (to 3.6.2 and 1.13.1 ↵Bastien Montagne
respectively).
2017-09-21deps build: use pip to install requests 2.18.4 and it's depsArto Kitula
2017-09-21Fix T50450: Breakdowner doesn't work in Tweak Mode on translated NLA StripsJoshua Leung
2017-09-21Fix T52861: Keymap editor filter doesn't show shortcuts using "+"Joshua Leung
2017-09-21fix T52831 removed enforcement of matrix decomposition when animations are ↵Gaia Clary
exported
2017-09-21revert commit c0a7e9b6312d74 because it did not work as expectedGaia Clary
2017-09-20D2777: allow blank lines and lines with spaces/tabs in cut/pasteGaia Clary
2017-09-20Revert "Fix T52792: Typo in UI label of a HairInfo node socket."Brecht Van Lommel
This reverts commit 8ad479a3227e36b201f740a127c08e29950bb219.
2017-09-20Added extra "const" to satisfy the strict clang version in Xcode 9Stefan Werner
2017-09-20Fix T52792: Typo in UI label of a HairInfo node socket.Bastien Montagne