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
path: root/source
AgeCommit message (Collapse)Author
2019-11-18Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-18Correct error in last commitCampbell Barton
2019-11-18Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-18Fix T71564: Undo stroke lags after entering sculpt modeCampbell Barton
Regression since 2.80, see: T71434
2019-11-18Fix wrong name for QuadriFlow undo stepCampbell Barton
2019-11-18GHOST: Only spam about X11 errors when using --debug-ghostSergey Sharybin
This commit adds a new command line argument --debug-ghost and makes it so X11 errors happening during context initialization are only printed when this new flag is sued. There is no need to flood users with errors when their GPU is not supporting latest OpenGL version. Or, at a very minimum, the error must be more meaning full. Differential Revision: https://developer.blender.org/D6057
2019-11-18Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-18Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-18Fix building on NetBSDCampbell Barton
2019-11-18Fix building on 32bit systemsCampbell Barton
2019-11-18msvc: Use debug versions of tbb malloc for debug buildsRay Molenkamp
Using the release versions gave unpredictable results when the msvc debugger was attached for some developers.
2019-11-15Fix T68191: Make-instances-real doesn't select the new instancesPhilipp Oeser
2.79 also did this [select the new instances] which was useful. 2.79 also kept the instancer selected [this patch deselects] Reviewed By: mont29 Maniphest Tasks: T68191 Differential Revision: https://developer.blender.org/D6233
2019-11-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-15Fix active bone flip not activating the wpaint vertex groupCampbell Barton
2019-11-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-15Cleanup: quiet warningsCampbell Barton
2019-11-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-15Docs: correct indent for to_swing_twist docstringCampbell Barton
2019-11-15Merge remote-tracking branch 'origin/blender-v2.81-release'Dalai Felinto
2019-11-15Fix: Filebrowser saving dialog size when maximizedDalai Felinto
Reviewed By: Severin Differential Revision: https://developer.blender.org/D6260
2019-11-15Fix crash when freeing Blender after GTestsSybren A. Stüvel
This only frees brush_rng and random_tex_array when they were actually previously allocated. In a unit test (see D6246) I want to be able to partially start Blender so that I can load a blend file. To prevent memory leaks, I also want to be able to release memory, which currently requires calling `BKE_blender_free()`. This unconditionally calls `RE_texture_rng_exit()` and `BKE_brush_system_exit()`, which now crash on freeing `NULL`. This patch fixes that. Allocation (`BKE_brush_system_init()`) and freeing (`BKE_brush_system_exit()`) are done asymmetrically. The allocation functions are called from `main()` in the creator module, but the freeing is done by `BKE_blender_free()` the Window Manager. Ideally we symmetrise this and initialise Blender from outside the window manager (so that the initialisation can be done without WM and Python too), but for now I'm happy when things don't crash. Reviewed by: sergey via pair programming
2019-11-15Cleanup: unused argument, variable warningsCampbell Barton
2019-11-15Fix T71590: Closing file browser reopens previously closed render viewJulian Eisel
The render view window was never closed actually, just moved behind the main window. It's properly closed now. It should also behave more like expected when there already is a temporary window open (e.g. Preferences).
2019-11-14GPencil MultiStroke modifierYimingWu
This patch includes a modifiers that developed for NPR rendering. - MultiStroke modifier that generates multiple strokes around the original ones. Differential Revision: https://developer.blender.org/D5795
2019-11-14Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-14Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-14Sculpt: disable undo from any UI elements in sculpt modeCampbell Barton
Causes undo push in sculpt mode, see: T71434
2019-11-14Paint: disable undo when changing the brush or it's sizeCampbell Barton
Causes undo push in sculpt mode, see: T71434
2019-11-14Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-14Fix T70211: Brush keybindings failed with non-brush tool activeCampbell Barton
2019-11-13Merge branch 'blender-v2.81-release'Pablo Dobarro
2019-11-13Sculpt: Sculpt template defaultsPablo Dobarro
This commit includes all changes listed in T71366 except for the 2 column toolbar layout. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6225
2019-11-13Merge branch 'blender-v2.81-release'Sergey Sharybin
2019-11-13Force sculpting on highest multires levelSergey Sharybin
This is a workaround for T58473 to avoid likely event of ruining sculpted data. Differential Revision: https://developer.blender.org/D6244
2019-11-13Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-13Fix T71434: Sculpt lags changing brush sizeCampbell Barton
Add a check to wm.radial_control so undo steps are only added to properties that have undo enabled (as is done with number buttons).
2019-11-13Cleanup: correct mul_v4_v4fl declarationJorge Bernal
2019-11-13Cleanup: use int for operator return argumentCampbell Barton
2019-11-13Merge branch 'blender-v2.81-release'Sergey Sharybin
2019-11-13Fix T71503: Wrap + displace + multires + Sculpt crashSergey Sharybin
The root of the issue goes to the discontinuity between the way how mesh_calc_modifiers() and BKE_sculpt_multires_active() works. At some point detection of original data usage by a modifier got broken: the mesh_final based check is unreliable because deform-only modifiers will create mesh_final for the connectivity information. This made it so modifier stack evaluation would skip multires evaluation, but the sculpt code will assume the multires is properly applied. This change makes it an explicit check about whether there are any non-deform-only modifiers applied. Pair programming and review together with Bastien, thanks!
2019-11-13Modifiers: Correct deform-only modifiersSergey Sharybin
There was a discontinuity between how deform-only modifiers are applied for the case when result deform mesh is requested and when it is not. Namely, the input mesh will always be guaranteed to present in the former case, but not in the latter. This change makes it so input mesh to deform-only modifiers is always at consistent state. Pair programming and review together with Bastien, thanks!
2019-11-13Initial implementation of code signing routinesSergey Sharybin
This changes integrates code signing steps into a buildbot worker process. The configuration requires having a separate machine running with a shared folder access between the signing machine and worker machine. Actual signing is happening as a "POST-INSTALL" script run by CMake, which allows to sign any binary which ends up in the final bundle. Additionally, such way allows to avoid signing binaries in the build folder (if we were signing as a built process, which iwas another alternative). Such complexity is needed on platforms which are using CPack to generate final bundle: CPack runs INSTALL target into its own location, so it is useless to run signing on a folder which is considered INSTALL by the buildbot worker. There is a signing script which can be used as a standalone tool, making it possible to hook up signing for macOS's bundler. There is a dummy Linux signer implementation, which can be activated by returning True from mock_codesign in linux_code_signer.py. Main purpose of this signer is to give an ability to develop the scripts on Linux environment, without going to Windows VM. The code is based on D6036 from Nathan Letwory. Differential Revision: https://developer.blender.org/D6216
2019-11-13Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-13Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-13Add support for the TBB allocator on windows.Ray Molenkamp
The heap on windows is single threaded causing it to lag behind linux in performance in allocation heavy multithreaded scenarios, BVH building is a prime example. See https://developer.blender.org/D6218 for benchmark results for testing with the allocator enabled/disabled you can set the environment variable TBB_MALLOC_DISABLE_REPLACEMENT=1 to disable the TBB allocator. Reviewed By: @sergey Differential Revision: https://developer.blender.org/D6218
2019-11-13Fix sculpt + undo curve crashCampbell Barton
PaintCurve data ID data wasn't being remapped. Error in initial undo refactor.
2019-11-13Fix T71494: brush curve transform crash in sculpt modeCampbell Barton
Error in 309cd047ef46f
2019-11-12Merge branch 'blender-v2.81-release'Philipp Oeser
2019-11-12Fix T71508: wrong gravity settings in scene defaultsPhilipp Oeser
Typo in rBf5e0dfe59c7e. Showed when creating a new default scene. Maniphest Tasks: T71508 Differential Revision: https://developer.blender.org/D6229
2019-11-11Merge remote-tracking branch 'origin/blender-v2.81-release'Dalai Felinto