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-06-03Cleanup: remove unused arg to wm_event_add_ghosteventCampbell Barton
2019-06-03Fix T65391: Wrong drag threshold for mouse motionCampbell Barton
2019-06-03Fix T65328: Offset when outliner gains focusJacques Lucke
I'm not actually not sure under which circumstances this code is actually doing something useful.
2019-06-03Cleanup: differentiate drag-and-drop from drag eventsCampbell Barton
2019-06-03Markers: Click-drag in empty area to box select markersJacques Lucke
To make this work, other changes were necessary: * To select a specific marker you have to click more exactly on the icon. * Moving markers with click-drag only works when starting on a marker. Additionally this patch implements that all markers are deselected, when the user clicks in an empty area. Reviewers: billreynish, brecht Differential Revision: https://developer.blender.org/D4975
2019-06-03Fix T65399: crash playing animation after applying smoke flow modifierPhilipp Oeser
missing DEG update. Reviewers: sergey Maniphest Tasks: T65399 Differential Revision: https://developer.blender.org/D4996
2019-06-03Fix T65408: GPencil Weight Paint, strength and falloff are ignored when ↵Antonio Vazquez
painting a lesser vertexweight The value was clamped to minimum value before checking the influence.
2019-06-03Fix T65294: Orbit navigate gizmo fails in paint modesCampbell Barton
2019-06-03Fix return type in recent gizmo key-map refactorCampbell Barton
2019-06-03fix collada Importer: Set bone transformation type when importing unskinned ↵Gaia Clary
skeleton
2019-06-03feature collada: Allow export/import of skeletal animations as curvesGaia Clary
2019-06-03refactor collada: Added utility functions bc_string_before() and ↵Gaia Clary
bc_string_after()
2019-06-03fix T34062 Collada exporter: changed order of export for decomposed ↵Gaia Clary
transformation. 1.) The Blender order of applying transforms is: Scale Rotation Transformation Reasoning: This order ensures there is no shearing, which happens when you do scaling after rotation, see also: https://blender.stackexchange.com/questions/1806 The Collada exporter now exports in the order how the transforms need to be applied upon import. 2.) Also removed obsolete #if 0 lines
2019-06-03refactor: use Quat and BCQuat instead of float[4] arrays for Quaternions (wip)Gaia Clary
2019-06-03fix: enforce transform export as <matrix> when exporting animated armature"Gaia Clary
Currently we can not export Decompsed Transforms in combination with Armature asnimations. As a temporary workaround enforce export of transformations as Matrix for armature objects.
2019-06-03fix: add back changes after last pull from masterGaia Clary
2019-06-03refactor collada: replace bc_sanitize_mat() by static class method in BCMatrixGaia Clary
2019-06-03refactor Collada: rename BCMatrix.* class files to BCMath.*Gaia Clary
2019-06-03refactor Collada: Add new class Quat (wip)Gaia Clary
2019-06-03refactor collada: Moved BCMatrix to its own fileGaia Clary
2019-06-03refactor collada: Moved basic typedefs in own fileGaia Clary
2019-06-03refactor collada: reorganize class methods in fileGaia Clary
2019-06-02UI: Fix inconsistent use of 'LookDev' vs 'Look Dev'William Reynish
2019-06-02Fix T65082, T65084: duplicating workspace does not preserve mode and orderBrecht Van Lommel
2019-06-02GPU: support default framebuffer with ID not equal to 0Tomoaki Kawada
2019-06-02Fix T65185: Cycles viewport render no refreshing overlays properlyBrecht Van Lommel
Don't rely on detecting view matrix changes to refresh depth buffer, instead detect redraw tags coming from progressive render samples.
2019-06-02Cleanup: better comments and naming for redraw flagsBrecht Van Lommel
2019-06-02GPencil: Cleanup unused linesAntonio Vazquez
These lines were related to other brushes and were copied in the function by error, but not required.
2019-06-01Fix: Trailing directory separator missing in default font path on windows.Ray Molenkamp
This caused the file browser to open in c:\windows with the fonts folder selected instead of opening c:\windows\fonts\ and listing the fonts. Reported on chat by @blendify
2019-06-01Fix T65330: Blender crash when double click on faceDalai Felinto
The fix itself is by Germano Cavalcante (mano-wii). But since I was investigating this with him, I'm including here an assert in EDBM_select_id_bm_elem_get to help catching this sooner in the future
2019-05-31Fix T64990: Isolate collection wrong reactionDalai Felinto
Bringing the same logic we do in the outliner restrict column callback and the menu call. Also removing the "change depsgraph" logic there. Isolate collections should not affect depsgraph relations (if it does it is to be tackled separately anyways).
2019-05-31Fix Outliner: New collections are hiddenDalai Felinto
Users could change the master collection flags, but they should not. That would not effectively affect the master collection objects (depsgraph flag evaluation ignores master collection flags). However we use the layer collection flags of the parent collection when creating a new child collection. We *could* solve this differently by creating a new RNA type for the master collection (and layer collection) and hook this with rna refine. But this patch seems to work well enough and it is simpler. Reviewers: brecht Differential Revision: https://developer.blender.org/D4981
2019-05-31Fix T65308: edit studio light state stays active after restarting BlenderBrecht Van Lommel
This is only temporary for editing, should not be preserved.
2019-05-31Fix T65317: crash applying wave modifier with textureBrecht Van Lommel
2019-05-31Fix T65311: crash using 3D viewport panning outside viewportBrecht Van Lommel
2019-05-31Fix T62282: multires sculpting does not update smooth normalsBrecht Van Lommel
It may be good to move the normals update out of the drawing code. But it was already there for the non-multires sculpt cases, and does not have an obvious place since we bypass the depsgraph and want to avoid the cost of updating the normals multiple times when multiple events are handled before a redraw.
2019-05-31Fix various missing updates in sculpt mode, when changing modifiers and dyntopoBrecht Van Lommel
This restores the code that updates the sculpt session and PBVH from dependency graph evaluation.
2019-05-31Fix sculpt mode drawing with modifiers still being wrong in some casesBrecht Van Lommel
Centralize logic for when to use the PBVH for drawing, fix missing tests in mask drawing, fix missing tests for multiple windows, only do more expensive update for all viewports at end of the stroke.
2019-05-31Fix crash on certain changes in edit modeSergey Sharybin
Was missing re-set evaluated mesh to NULL. Fix T65302: Crash after selecting one of multiple materials Fix T65346: Blender crashes when selecting material in editing mode and LookDev view Fix T65344: Blender crashes in edit mode when changing object
2019-05-31GPencil: Cleanup some commentsAntonio Vazquez
2019-05-31Cleanup: use static_assert on MSVC versions that support it.Ray Molenkamp
This greatly improves the error message
2019-05-31Walk mode: Enable fancy icons instead of text for shortcutsDalai Felinto
Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D4988
2019-05-31Fix T65278: Stats info and instancing "misinformation"Dalai Felinto
Object could and polygon count should ignore multiple instances of the same data, yet count it at least once even if linked. Reviewers: brecht Differential Revision: https://developer.blender.org/D4986
2019-05-31Cleanup: style, use braces in source/ (include disabled blocks)Campbell Barton
2019-05-31Fix bmesh_to_mesh freeing possibly referenced verticesSergey Sharybin
Fixes Godot exporter issue reported in T65285.
2019-05-31Cleanup: style, use braces in source/Campbell Barton
Automated using clang-tidy.
2019-05-31Fix missing file read/write of proxy/transform/crop settings when not usedBrecht Van Lommel
This was inconsistent with other data handling in Blender.
2019-05-31Gizmo: add 2D navigation for image/clip/sequencer viewsCampbell Barton
2019-05-31WM: option to ignore cursor image/clip/view2d zoomCampbell Barton
In preparation for view navigation gizmos.
2019-05-31Fix T65200: Crash by hiting "tab" after sculpting with dyntopoSergey Sharybin
Make sure object is properly evaluated to the new state when it is expected to. Reviewers: brecht, mont29 Reviewed By: brecht Differential Revision: https://developer.blender.org/D4985