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-05-27Cleanup: Fix warnings in bf_dnaRay Molenkamp
Passing a const char** to MEM_recallocN lead to C4090 'function': different 'const' qualifiers warnings with MSVC
2019-05-27Fix (unreported) invalid handling of IDs usercount in ↵Bastien Montagne
`BKE_mesh_new_from_object_to_bmain()`. Would have broken usercount of mesh used as texco reference e.g.
2019-05-27Cleanup: Fix warning in makesdnaRay Molenkamp
passing a const pointer to BLI_ghash_insert causes warning C4090 'function': different 'const' qualifiers with MSVC
2019-05-27Fix T63173: Dragging hidden collection inside a visible one unhides itDalai Felinto
Same for holdout, indirect only and exclude. Reviewers: brecht Differential Revision: https://developer.blender.org/D4945
2019-05-27Fix annotations not drawing correctly on Cycles rendered viewBrecht Van Lommel
2019-05-27Cleanup: Fix warnings in gpu_batchRay Molenkamp
Passing a const pointer to MEM_freeN/MEM_recallocN lead to C4090 'function': different 'const' qualifiers warnings with MSVC
2019-05-27Cleanup: Fix warnings in bf_gpuRay Molenkamp
Declaration and implementation got out of sync leading to warnings.
2019-05-27Eevee/GPencil: Fix depth reading after renderClément Foucault
2019-05-27draw_manager: fix warning with msvc.Ray Molenkamp
32 bit shift stored in 64 bit field gave a warning with MSVC.
2019-05-27fix: collada transformtype must be identical for animation export and object ↵Gaia Clary
export When exporting an object we can choose the transformation type 'Matrix' or 'trans/rot/scale' When exporting an animation we have the same choice regarding the used transformation type. However we must make sure that animations and objects use the same transformation type within one colleda export. The user interface is now reworked such that the correct settings are always guaranteed. I also reworked the tool tips
2019-05-27refactor collada: rename add_node_transform() to add_joint_transform()Gaia Clary
2019-05-27Gizmo: add event argument to invoke_prepare callbackCampbell Barton
2019-05-27blenloader: Fix warnings with MSVCRay Molenkamp
these macros are mostly used with size_t types, leading to msvc warning : warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits
2019-05-27Fix T65052: "Convert to mesh from curve" fail if the curve has a bevelSergey Sharybin
Use evaluated object as an input for mesh construction. This ensures all dependencies are ready. Reviewers: brecht, mont29 Reviewed By: brecht, mont29 Differential Revision: https://developer.blender.org/D4955
2019-05-27Cleanup: remove redundant assignmentCampbell Barton
2019-05-27Fix T65177: Camera frame visible in viewport renderJacques Lucke
2019-05-27Fix T65066 Armature and bone selection is broken on macOSClément Foucault
2019-05-27Fix poor display of time codes in sequencer Info panelMal Duffin
Allow using : in labels inside buttons. Differential Revision: https://developer.blender.org/D4944
2019-05-27Eevee: Fix render z-depth for orthographic cameraClément Foucault
Fix last commit
2019-05-27Eevee: Fix render depth pass being negativeClément Foucault
2019-05-27Wireframe: Make wireframe's Xray slider default to 0Clément Foucault
This removes the dither patterns visible in wireframe mode. This does decrease de depth perception but many users complained about the visual noise it produces.
2019-05-27Cleanup: DRW: Make clipped shader use UBO clip planesClément Foucault
2019-05-27Cleanup: DRW: Move WorldClipPlanes to builtin uniformClément Foucault
2019-05-27Cleanup: DRW: Remove DRW_STATE_OFFSETClément Foucault
2019-05-27Cleanup: Paint Overlays: Remove DRW_STATE_OFFSET_*Clément Foucault
2019-05-27Cleanup: EditMesh: Remove DRW_STATE_OFFSET_*Clément Foucault
2019-05-27Depsgraph: Fix condition inverted by mistakeSergey Sharybin
Fixes T65165: Weights are not displayed in "Weight Paint" with modifiers
2019-05-27Fix T65181: image View as Render should not affect file savingBrecht Van Lommel
2019-05-27Fix T65160: missing updates when setting origin on a collection instancePhilipp Oeser
Reviewers: sergey, brecht Maniphest Tasks: T65160 Differential Revision: https://developer.blender.org/D4953
2019-05-27Python API: Tag for update on object.update_from_editmode()Sergey Sharybin
This call modifies geometry but does not inform anyone about changes. After this change it's possible to load edit mesh, then request evaluated dependency graph and do some interesting things with the updated object. This is part of T63244: object.to_mesh ignores object.update_from_editmode
2019-05-27Depsgraph API: Allow preserving custom data layersSergey Sharybin
This commit extends dependency graph API with an argument which denotes that all custom data layers are to be preserved. This forces modifier stack re-evaluation with more inclusive mask. Far from ideal, since this might fail in certain configurations with indirectly used objects which might be missing layers needed for the current object evaluation. But this is how it worked for a long time, so should be good enough for until more sophisticated solution is found. In order to use this new behavior two things are to be passed: - Pass keep_all_data_layers=True - Pass a valid dependency graph. The dependency graph is only needed if keep_all_data_layers=True and is NOT to be passed if keep_all_data_layers=False. If keep_all_data_layers=True the dependency graph MUST be passed. Reviewers: mont29, brecht Reviewed By: mont29 Maniphest Tasks: T64994, T64794 Differential Revision: https://developer.blender.org/D4940
2019-05-27Depsgraph: Use threading guard in context.evaluated_depsgraph_getSergey Sharybin
This is a part of T65174.
2019-05-27UI: use tool label instead of id-names for quick favoritesCampbell Barton
2019-05-27Mitigate T64346: Quick Favorites items cant be removedCampbell Barton
For now don't show missing quick favorite menu items which are missing. Once menu editing is supported they could be displayed.
2019-05-27Fix T65074: Crash on switching colorCampbell Barton
Make buttons to take active `Paint` from the context. D4946 by @Gvgeo
2019-05-27Revert "UI: Edit Menu Operator Polling"Brecht Van Lommel
This reverts part of commit b7eba20236ca6499a62a8ee2b0c852086bc46b8e. Polling is causing issues in scripts, and the minor usability improvements are not worth the extra work this may cause at this point in the release cycle. Fixes T65149
2019-05-26Fix T64989 Bevel hangs with Mark Sharp sometimes.Howard Trickey
Code for extending sharp edges assumes ADJ pattern and this example uses TRI_FAN pattern. This change doesn't fix TRI_FAN mark sharp bug at least won't infinite loop any more.
2019-05-26Fix misleading image color space and alpha tooltipsBrecht Van Lommel
2019-05-26Fix: BLI_task_test deadlock on windows.Ray Molenkamp
This patch makes BLI_task_scheduler_create wait for all worker threads to have started before returning to caller. For very short workloads (BLI_taks_test) there is the chance that the worker threads have not fully started yet, and the main thread is calling pthread_join at the same time as pthread_setspecific is being called on the worker threads which causes a deadlock on pthreads4w. Differential Revision: https://developer.blender.org/D4936 Reviewed By: mont29, sergey, brecht
2019-05-25blenlib: Fix build warning with MSVCRay Molenkamp
The declaration and implementation of BLI_path_name_at_index were out of sync leading to build warning C4028: formal parameter 1/3/4 different from declaration
2019-05-25blenlib: Fix debug build warning with MSVC.Ray Molenkamp
Wrong printf format specifier was used leading to warning C4477
2019-05-25imbuf/oiio: Resolve build warnings with MSVC.Ray Molenkamp
math.h and oiio's missing_math.h where clashing over the definitions of common math defines like M_PI.
2019-05-25Fix T64582: bevel spikes sometimesHoward Trickey
The code to move the profile plane needed to not do that in a few more cases.
2019-05-25Fix T65092: error with gizmos using freed keymapsCampbell Barton
Caused by 5adfc51a0fc7f, sharing keymaps caused changing tools to unregister gizmos and remove their keymaps. Workaround for now by not removing the keymap.
2019-05-25Cleanup: warnings building without ASANCampbell Barton
2019-05-25Fix T65094: Sequencer crashes blender when scene strip has NULL sceneDalai Felinto
Bug introduced on 930765faa81e.
2019-05-24Outliner: Fix selecting collections in view layer selecting original objectsDalai Felinto
Part of T64438.
2019-05-24Fix T65081: sculpting workspace no longer has matcap by defaultBrecht Van Lommel
2019-05-24Outliner: Set View Layer as the default mode for new outlinersDalai Felinto
This mode was supposed to be the new default since 2 years already. But apparently, it was tackled only for doversion, but not for new outliners (see 7f596d39dff11).
2019-05-24Fix failing assert on factory settings loadJulian Eisel
Loading factory preferences from the preferences window and triggering a redraw then would cause the failing assert. We shouldn't mess with window-manager data when loading preferences only.