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
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.
2019-07-06Fix T66501: Eraser very slow with guidesAntonioya
After testing the file, the problem was related to the fill material. As the fill material had the alpha channel set to 1.0, the fill triangulation was calculated, but the fill was disabled. Now, the fill flag is checked in order to avoid fill triangulation update.
2019-07-06GPencil: Don't add missing events for Eraser modeAntonioya
This avoid some code that can delay the easer, but still some problems with the test file. Related to T66501
2019-07-06Fix T62101: GPencil: selection order is wrongAntonioya
Following the advices of @Germano Cavalcante (mano-wii) , I have exposed as a workaround the free function to be called from draw manager for selection. Now, the free function is not called for selection inside gpencil draw_scene, but it's called from draw_manager.c. The real fix would be create a new Scene_finish callback in draw manager, but as the release of 2.80 is almost here, we fix this with a workaround that must be removed when new callback is in place. Differential Revision: http://developer.blender.org/D5193
2019-07-06transform_snap_object: return type of element snapped.mano-wii
This can be useful for filtering some of the returns.
2019-07-05Fix T66282: Make Instances Real: Keep Hierarchy option broken with recursive ↵Bastien Montagne
instancing. Preserving/rebuilding relashionships in recursive instancing was simply not supported at all, code handling that was assuming a single level of instancing. This commit makes the following changes: * Mixing DupliCollection and DupliVerts/Faces in the recursive chain is now supported (by using a same GHash in all cases, differences of persistent_id handling in hashing and comparison is now down inside the relevant functions). * When both "keep hierarchy" and "parent" options are enabled, code will attempt to parent new objects to their version of instancer (instead of parenting them systematically to the root object). This will preserve the hierarchy much better. * Collection is removed from dupli empties that have been made 'real' (the duplication flag itself was already cleared, but the link to the instantiated collection was kept).
2019-07-05Fix T66327 2/2: Make instance real does not clear collectionDalai Felinto
2019-07-05Fix T66327 1/2: Outliner dupli empty is shown as collection when a different ↵Dalai Felinto
duplitype
2019-07-05Transform Snap: Fix dependency cycle between transformed object and object ↵mano-wii
with modifiers
2019-07-05Fix strict compiler warningsSergey Sharybin
2019-07-05Fix T64342: Incorrect snapping of focus object in camera viewSergey Sharybin
Use more granular dependency graph traversal, which allows to ignore dependencies which are not related on transform. Reviewers: mano-wii, brecht Differential Revision: https://developer.blender.org/D5184