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-07-09Cleanup: GPU: Correct commentClément Foucault
2019-07-09Fix T61474: laggy interaction on Windows/NVIDIA when gizmos are visibleBrecht Van Lommel
Thanks to Sergey and Clément for helping to track this down.
2019-07-09Fix T57652: Multires undo broken with shared object dataSergey Sharybin
2019-07-09GPU: ATI Proxy checkJeroen Bakker
The AMD PRO driver on linux PROXY check also fails. Now the configuration ATI/Unix/Official driver will also bypass the Proxy test. Reviewed By: fclem Differential Revision: https://developer.blender.org/D5205
2019-07-09Fix T64483: crash when hovering over outliner after closing render windowSybren A. Stüvel
The `tselem->id` pointer can also be used for non-ID data (according to this comment in DNA_outliner_types.h: ``` /* XXX We actually also store non-ID data in this pointer for identifying * the TreeStoreElem for a TreeElement when rebuilding the tree. Ugly! */ ``` As such, I don't mind adding a `NULL`-check in the `is_object_data_in_editmode()` function. After all, when there is no object, its data certainly is not in edit mode.
2019-07-09Fix T66274: Object Texture Coordinate mode not updating in Lookdev / EeveeSergey Sharybin
2019-07-09Implement Movieclip filter for action editorsSergey Sharybin
Allows to disable keyframes from movie clips in dopesheet. Reviewers: brecht Reviewed By: brecht Subscribers: sebastian_k Differential Revision: https://developer.blender.org/D5203
2019-07-09Fix T66516: WPaint crash selecting bone with wire & face-maskCampbell Barton
2019-07-09Fix T66359: UV editor ignores face-dot sizeCampbell Barton
D5178 by @deadpin
2019-07-09GPU: added debug value to investigate lagging issue in T6147Brecht Van Lommel
2019-07-09Fix T55192: Speed fx applied to scene messed up animationRichard Antalik
Don't update animdata after rendering scene Rendering host scene from sequencer is not supported, removed code is unnecessary. Reviewed By: brecht Differential Revision: https://developer.blender.org/D5199
2019-07-09Fix T66573 Heap Corruption when baking to irradiance volume probeClément Foucault
This is an AMD Proprietary driver bug. Will be reported upstream.
2019-07-08Revert "Revert "Fix T63447 Particle system: No particles after switching ↵mano-wii
from hair to ..."" This reverts commit 45761e4c7cbbed2141afc97fb20b2bf26ce19ac2.
2019-07-08Revert "Fix T63447 Particle system: No particles after switching from hair ↵mano-wii
to ..." Problems with clang style This reverts commit 8d6a5fb5d3c45cdfb0d06dd7f1f18aa8c870f8c1.
2019-07-08Fix T63447 Particle system: No particles after switching from hair to ...Clément Foucault
... emitter type
2019-07-08Fix T63659 "Viewport render image" don't process corectly "Display As" optionClément Foucault
2019-07-08Fix T66008 Viewport: hidden edges are partially visibleClément Foucault
This was a regression from 2.79. The zoffset was doubled for some reason.
2019-07-08Fix T65534 Eevee don't respect active UVmapClément Foucault
2019-07-08Fix T66351 Wireframe display in sculpt-mode broke when hiding partsClément Foucault
2019-07-08Fix T66348 Eevee: Broken shader if using textures and shader_to_rgb nodeClément Foucault
Was caused by a missing texture resource.
2019-07-08Fix T66475 Spin Modifier: Merge Vert Makes mesh disappearClément Foucault
2019-07-08Fix T66470 Planar track is not adjustableClément Foucault
The issue was that the shader used was expecting GL_LINES and the points were using GL_TRIANGLE_FAN.
2019-07-08Fix T62941 Subdivision Modifier Showing all face dotsClément Foucault
Previously in 2.79 we were using a specialized drawing using derivedMesh. Now the subsurf modifier tag each center vertex as facedot and let the DRWManager pick it up. Some modifiers (deforming ones) do not clear the tag so we can use this technique even if there is deforming modifiers after subsurf modifiers.
2019-07-08Fix T61129 Eevee: alpha texture shadow bugClément Foucault
Seems like the AMD pro driver does not consider dead code the same as other glsl compiler.
2019-07-08Fix T66556: Noisy drivers relations in certain casesSergey Sharybin
2019-07-08Fix T62903: black line in UV editor on 32 bitBrecht Van Lommel
2019-07-08Fix T66538: Menus in popups opening on mouse overCampbell Barton
Caused by b708917d94afa Solve by restricting this change to popovers instead of other kinds of menus (enums mainly).
2019-07-08Fix T66554: Measure doesn't snap with CtrlCampbell Barton
2019-07-08Fix (unreported) broken 'compse' feature when editing text.Bastien Montagne
Looks like that code was not updated when we switched to unicode, it was still returning axtended ascii codes (iso-8859-15 ones I think)... That was breaking some chars, which have a very different value in unicode. Found while working on Text section of the Manual! ;)
2019-07-08Fix T66431: SE - Audio Caching crashSergey Sharybin
Moved the caching code from direct calls in DNA to dependency graph. In fact, not much was needed to be done apart form removing the direct cache updates. The rest seemed to work fine. Possible to avoid full sound file re-load, but doesn't seem this is causing any issues.
2019-07-08Fix T66499: Parenting a Mask to Plane Track doesnt workSergey Sharybin
2019-07-08UI: Update tooltip of Vertex Selection maskingPablo Vazquez
Since it is now possible to use it in Vertex Paint, not just Weight Paint.
2019-07-08Fix T66526: child's objects move if change their origin positionPhilipp Oeser
Reviewers: sergey Maniphest Tasks: T66526 Differential Revision: https://developer.blender.org/D5201
2019-07-08Fix T66524: Eyedropper in popover crashesCampbell Barton
2019-07-08Fix T66525: Wrong apply scale for children chainSergey Sharybin
The operator did not behave correct when there was a chain of parents longer than 1.
2019-07-08Fix wrong colors when creating a float normal map image in texture paintBrecht Van Lommel
2019-07-08Cleanup: Spelling in function nameSergey Sharybin
2019-07-07Fix T66376: Problem with Gpencil fill toolAntonioya
The fill material has an alpha > 0, but the show fill is disabled, but as the fill tool is considered the fill as visible and the stroke is not drawn, the fill area had a gap.
2019-07-07Cleanup: split enum types, use PF_CMP prefixCampbell Barton
2019-07-07Cleanup: move enum unto BKE_packedFile.hCampbell Barton
Use enum type for functions arguments. Removed -1 check in switch statement, this isn't needed.
2019-07-07Cleanup: use BKE_packedfile prefix for function namesCampbell Barton
Avoid ambiguity with terms check & compare.
2019-07-07Cleanup: clang-formatCampbell Barton
2019-07-07Fix crash running an operator from a popup,Campbell Barton
Cell fracture redraw option was crashing. Change operator popup behavior to close the UI before executing since the operator may perform operations which change/remove the UI.
2019-07-07Cleanup: spellingCampbell Barton
2019-07-07Docs: update window/screen introductionCampbell Barton
Include global region/areas.
2019-07-07Cleanup: rename gpencil chess -> checkerCampbell Barton
Match existing texture name.
2019-07-07UI: Correct tooltipAaron Carlisle
2019-07-07UI: Cleanup tooltip formatAaron Carlisle
2019-07-07UI: Cleanup tooltip formatAaron Carlisle
2019-07-06GPencil: Close Box and Circle primitives with geometryAntonioya
Before the primitives were closed only with cyclic flag, but this doesn't create geometry for the gap. Now, a new geometry is created using close stroke function to have geometry for sculpt or edit.