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-05-29Fix T58251: Cycles ignores linked meshes when renderingSergey Sharybin
The idea is to share a mesh data-block as a result across all objects which are sharing same original mesh and have no effective modifiers. This mesh is owned by an original copy-on-written version of object data. Tricky part is to make sure it is only initialized once, and currently a silly mutex lock is used. In practice it only locks if the mesh is not already there. As an extra bonus, even viewport memory is also lower after this change. Reviewers: brecht, mont29 Reviewed By: brecht, mont29 Differential Revision: https://developer.blender.org/D4954
2019-05-29Keymap: Add back support for Set/Add/Subtract for box selecting in the ↵William Reynish
Sequencer.
2019-05-29UI: use matching distance checks & define for draggingCampbell Barton
2019-05-29Correct error in last commitCampbell Barton
2019-05-29Correct error in last commitCampbell Barton
2019-05-29Keymap: add drag-only generic gizmo keymapCampbell Barton
Allows gizmos clicks to fall through for gizmos which only drag, currently unused.
2019-05-29Fix T65027: Snap 3D cursor on hidden faces doesn't work in Edit Mode.mano-wii
I'm not very fond of adding new types of bvhtrees. But this is probably the most efficient solution.
2019-05-29Fix T65005: Missing "LINES_ADJ" and "TRIS_ADJ" in the GPU Python API.mano-wii
2019-05-29Possible fix for T63685: macOS edit mode selection not working on second displaymano-wii
The idea is to force `glReadPixel` to run in the offscreen context. And don't rely on any rendering context.
2019-05-29Cleanup: move gizmo keymap access into funcitonsCampbell Barton
Existing functions were written to match the setup_keymap callback. Add versions that can be called with the window manager for convenience.
2019-05-29Cleanup: remove redundant sequencer under cursor checkCampbell Barton
2019-05-29Cleanup: correct private function namingCampbell Barton
Use term 'glyph' instead of 'icon' since we already have event icons.
2019-05-29Cleanup: Remove Dead CodeAaron Carlisle
2019-05-29Fix T65244: emission node not available for world shader nodesBrecht Van Lommel
2019-05-28Fix T65175: nodetree animation stays linked after duplicating a lampPhilipp Oeser
Reviewers: mont29, brecht Maniphest Tasks: T65175 Differential Revision: https://developer.blender.org/D4956
2019-05-28Fix T64123 Eevee: Reflections Not Visible On Alpha Clip MaterialsClément Foucault
2019-05-28Eevee: Fix assert when displaying transparent film checkerClément Foucault
2019-05-28Eevee: Change default shadowmap near clipping distanceClément Foucault
And also fix some RNA props defaults and ranges. Fix T64452 Shadows not appearing in eevee
2019-05-28Eevee: Render alpha blended objects when rendering probesClément Foucault
This fix T64553 EEVEE: Emission material not lighting other objects when blend mode set to alpha blend
2019-05-28Tests: make grease pencil tests part of OpenGL render testsBrecht Van Lommel
Otherwise tests fail on machines without OpenGL.
2019-05-28Fix T65212: Cycles SSS failing on 32 bitBrecht Van Lommel
2019-05-28Sequencer: Drag outside of sequence to initiate box selectJacques Lucke
2019-05-28DRW: Fix issue introduce in removal of DRW_STATE_POINTClément Foucault
Fix issue raised by mano-wii in rB97d22e12b521 Fix T65050 knife tool snapping indicator not visible
2019-05-28Cleanup: DRW: CodestyleClément Foucault
2019-05-28Cleanup: GPU: Move program point size to GPU_stateClément Foucault
2019-05-28Fix T64005: GPencil clamping pixels do not always workAntonioya
2019-05-28Depsgraph: Add query for whether graph is up to dateSergey Sharybin
Depsgraph: Only invoke callbacks when there are changes Only affects when an evaluated dependency graph is requested via context. Makes it cheap to call when there are no changes made to the graph Transform: Ensure depsgraph is evaluated when needed Fix based on D4455 from Campbell, utilizes some recently introduced functions and allows to not have any extra checks in the transform code. Fixes T61904 Fixes T62135 Reviewers: brecht Maniphest Tasks: T62135, T61904 Differential Revision: https://developer.blender.org/D4967
2019-05-28Depsgraph: Only invoke callbacks when there are changesSergey Sharybin
Only affects when an evaluated dependency graph is requested via context. Makes it cheap to call when there are no changes made to the graph
2019-05-28Depsgraph: Add query for whether graph is up to dateSergey Sharybin
2019-05-28Cleanup: use doxy comments for wmOperatoType.flagCampbell Barton
2019-05-28Cleanup: use WM_ prefix for cursor enumCampbell Barton
2019-05-28WM: support X/Y axis cursor wrappingCampbell Barton
Operator flags to wrap on a single axis. D4865 by @Gvgeo with updates. Resolves T64585
2019-05-28Cleanup: clang-formatCampbell Barton
2019-05-28Fix T64829: Active point of Curve objects is not displayed correctlyPhilipp Oeser
three issues here: - when curves had multiple nurbs, the active vert is per nurb [curve_create_edit_data_and_handles() wasnt taking that into account] - code could go wrong when points where hidden - upon selection, tag curve ID_RECALC_COPY_ON_WRITE for batch cache update Reviewers: brecht, fclem, sergey Maniphest Tasks: T64829 Differential Revision: https://developer.blender.org/D4943
2019-05-28Fix T65187: Overlay blend increase wrongly the opacityAntonioya
The calculation of the mix color was not using the bottom color when the alpha was lower than 1.0. Also added clamp code to avoid values outside valid ranges.
2019-05-28GPencil: Minor cleanupAntonioya
2019-05-28Codestyle: Remove trailing spacesJeroen Bakker
2019-05-28MeshAnalysis: Disable when XRay is turned onJeroen Bakker
When XRay is turned on the mesh analysis did not draw correct. This change won't draw the mesh analysis overlay when xray is turned on. In terms of giving the user a visual feedback of this limitation we render the overlay options inactive. Reviewed By: brecht, fclem Maniphest Tasks: T65225 Differential Revision: https://developer.blender.org/D4965
2019-05-28Fix T64536 Eevee: Reflection texco no longer worksClément Foucault
2019-05-28Fix T65226 Crash on entering in Edit mode with ASAN buildClément Foucault
2019-05-28Cleanup: DRW: Rename DRW_STATE_BLEND_* for API clarityClément Foucault
2019-05-28Fix T65141 Bevel did not curve.Howard Trickey
The previous fix to the spike bug T64582 was not really right. This fixes that one properly and restores the desired curving profile in the bug's example.
2019-05-28Fix T57090: selected node group input sockets circles not drawing inPhilipp Oeser
sidebar UIList nodesockets were actually drawn, but immediately drawn over by widgets from the widget draw batch cache. solution here is to "widgify" nodesocket drawing as well. Reviewers: brecht Maniphest Tasks: T57090 Differential Revision: https://developer.blender.org/D4963
2019-05-28Fix T57483: Driver on grease pencil modifier does not updateSergey Sharybin
2019-05-28Fix T65212: Cycles_render_layer test grease pencil crashes.Antonioya
Theme colors should not be accessed for rendering. Also some minor cleanups. Thanks @brecht for catching the bug.
2019-05-28Cleanup: unused args/varsCampbell Barton
2019-05-28Cleanup: use time scrub instead of scrubbingCampbell Barton
Renaming was only done to ED_time_scrub_ui.h, function names and struct members used term 'scrubbing' which is ambiguous.
2019-05-28Cleanup: clang formatCampbell Barton
2019-05-28Cleanup: rename gizmo keymapsCampbell Barton
Don't use plural because single/multiple isn't relevant for keymap definitions and reads badly for specific gizmo types that only use a single gizmo.
2019-05-28Cleanup: remove unused modal gizmo keymapCampbell Barton
An operator can only have one modal keymap, there is no use in defining multiple.