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-08-21Shading: Add White Noise node.OmarSquircleArt
The White Noise node hashes the input and returns a random number in the range [0, 1]. The input can be a 1D, 2D, 3D, or a 4D vector. Reviewers: brecht, JacquesLucke Differential Revision: https://developer.blender.org/D5550
2019-08-21Shading: Add more operators to Vector Math node.OmarSquircleArt
Add Multiply, Divide, Project, Reflect, Distance, Length, Scale, Snap, Floor, Ceil, Modulo, Fraction, Absolute, Minimum, and Maximum operators to the Vector Math node. The Value output has been removed from operators whose output is a vector, and the other way around. All of those removals has been handled properly in versioning code. The patch doesn't include tests for the new operators. Tests will be added in a later patch. Reviewers: brecht, JacquesLucke Differential Revision: https://developer.blender.org/D5523
2019-08-21Cleanup: remove old Windows scons installer, this is handled by CMake nowBrecht Van Lommel
2019-08-21Cleanup: Fix build error with MSVCLazydodo
Previously eigens internal include order somehow implicitly provided M_PI and friends. The recent eigen version bump broke this implicit behaviour, better to be explicit that we need the math defines for MSVC.
2019-08-21Timeline: refactor cache drawingJacques Lucke
I did this mostly to get to know the point cache from this direction. This should not change anything from the user perspective.
2019-08-21LibOverride: Fix inverted logic in RNA collection operation application.Bastien Montagne
Note to self: need to recheck the namings of whole override code, currently this is way to confusing and inconsistent.
2019-08-21Cleanup: minor error in assert message in libOverride collection code.Bastien Montagne
2019-08-21Fix T68826 Eevee: Multi-Mat not working if switching from Solid shadingClément Foucault
The correct fix would be to avoid all those hacks but this is needed if we want to be able to parallelize object vbo extractions.
2019-08-21GPU: Fix Element index range calculationClément Foucault
Fix T68880 2D line display is broken
2019-08-21Update Eigen to 3.3.7Sebastian Parborg
This is in preparation for the QuadriFlow remesher lib. Reviewed By: Brecht Differential Revision: http://developer.blender.org/D5549
2019-08-21Fix T68837 Eevee: Fix "GPU failed to find function math_max" messageClément Foucault
Was a missing rename.
2019-08-21Update CUEW to latest versionBrecht Van Lommel
2019-08-21Fix T68951: Incrementing int property causes overflowJacques Lucke
This was probably introduced in rBfdef1a6712b.
2019-08-21Fix T68943: GPencil Time modifier gets strange value in offset parameterAntonio Vazquez
This is due a limitation in the RNA property when the range is too extreme. As we don't need that, the value was set to SHRT_MAX frames as maximum offset. Also fixed the same problem in other modules of Grease Pencil.
2019-08-21UI: Don't left align operator buttons in toolbarsJulian Eisel
This hack would make operator (push down) buttons without icons align their text to the left in toolbars. Everywhere else in Blender, we center it by default. We barely use operator buttons in toolbars anymore. Even if we do and there's a good reason to make text left aligned, it's better to use `uiLayout.alignment = 'LEFT'` to achieve the same effect, but without lowish-level hacks for a specific region type. Differential Revision: https://developer.blender.org/D5527
2019-08-21Fix T65671: Armature X-Mirror inconsistenciesDemeter Dzadik
This fixes bendy bone properties not being mirrored correctly Reviewed By: Brecht Differential Revision: http://developer.blender.org/D5408
2019-08-21GPencil: add new filter by material to modifiersMatias Mendiola
This commit adds a new filter by material using the name and not only the index. Reviewers: antoniov, pepeland Differential Revision: https://developer.blender.org/D5544
2019-08-21Cleanup: pass lattice directly vertex coord utilitiesCampbell Barton
2019-08-21Fix T68444: outliner bone visibility not updatingNathan Craddock
Tags for update when pose bone visibility is toggled in the outliner.
2019-08-21Fix T68429: wrong pose bone hide icon in outlinerNathan Craddock
The hide icon was drawing instead of the disable in viewports icon.
2019-08-21Cleanup: use const arguments for vertex coordsCampbell Barton
2019-08-21Cleanup: remove unused derived-mesh API callsCampbell Barton
2019-08-21Fix grid snap value in recent snapping updatesCampbell Barton
Increase the size of the snap mode so the flag can be used.
2019-08-21Fix T68911: "illegal recursive expansion of macro id"mano-wii
I imagined that could be a problem for some drivers. I should have avoided.
2019-08-21Fix conflict with "Edge Center" snap modemano-wii
`SCE_SNAP_MODE_GRID` is used for both nodes and objects. I don't think it's worth versioning in this case.
2019-08-21Transform: New Snap Option: Edge Perpendicularmano-wii
Part of T66420 Option for snapping to the nearest point of a reference coordinate. The patch also adds Edge Center and Perpendicular snaps to the ruler. {F7675906} Reviewers: campbellbarton, brecht Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D5543
2019-08-21Fix T68869: outliner missing subversion bumpNathan Craddock
The recent commit of synced selection added an active color theme to the outliner, and synced selection enabled by default. The subversion bump was missed.
2019-08-21Cleanup: remove redundant operator data in keymapCampbell Barton
2019-08-21Keymap: Shift-Ctrl-Click didn't allow toggle selectionCampbell Barton
D5518 by @jenkm
2019-08-20GPencil: Hide self_overlap parameter for Texture strokesAntonio Vazquez
This property is not supported in this mode and must be removed from UI.
2019-08-20Editor Transform: New Snap Option Middlemano-wii
Part of T66420 Reviewers: campbellbarton, brecht Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D5532
2019-08-20Fix use of uninitialized variable in Cycles math nodeBrecht Van Lommel
2019-08-20Fix T68877: GPencil - Missing remove unused slots in menuAntonio Vazquez
The operator was missing in the menu for grease pencil materials.
2019-08-20Liboverride: Add more missing ID RNA pointers as overridable.Bastien Montagne
2019-08-20Fix T68789: Do not use new python format strings thingy in UI code.Bastien Montagne
This is 100% incompatible with translation...
2019-08-20Cycles Tests: Fix Math tests when use_clamp is true.OmarSquircleArt
The clamp option is implemented using graph expansion, where a Clamp node named "clamp" is added and connected to the output. So the final result is actually from the node "clamp". Reviewers: brecht Differential Revision: https://developer.blender.org/D5540
2019-08-20Cleanup: remove undefined functionmano-wii
2019-08-20Select Engine: Move some private members out of select contextmano-wii
2019-08-20Cleanup: Move select_engine function to corresponding headermano-wii
2019-08-20UI: add URL presetsCampbell Barton
This adds a url-preset operator to simplify opening re-usable links. - Standard websites have their own tool-tip. - De-duplicate logic to get URL's that include version information. - Reporting bugs no longer needs to have all information included in the URL. D5498 by @luisbg with edits.
2019-08-20Cleanup: comparison warningCampbell Barton
2019-08-20BLI: double version of some math functions.YimingWu
2019-08-20Fix release notes showing twice in the splash-screenCampbell Barton
2019-08-20Cleanup: clang-format, sorted listsCampbell Barton
2019-08-20Fix crash with no grid unitmano-wii
2019-08-20Fix T61286: Viewport grid units not visiblemano-wii
The original code was commented on. Unlike blender 2.79, the grid units are now displayed only when RV3D_VIEW_IS_AXIS. The visible subdivisions in the grid are made by the GPU and depending on the pixel. The code used here only mimics this behavior and adds a bit of overhead. Reviewers: fclem, campbellbarton Subscribers: FloridaJo, zlsa, rl.amorato, EitanSomething Differential Revision: https://developer.blender.org/D4325
2019-08-20Memory: Fix guarded aligned malloc with small alignmentJacques Lucke
When calling `MEM_guarded_mallocN_aligned` with an alignment of 4, a pointer that was returned that is 4 byte but not 8 byte aligned. When freeing this pointer, `MEM_guarded_freeN` thinks that it is an illegal pointer, because it asserts that `((intptr_t)memh) & 0x7 == 0`. The fix is to always use at least 8 byte alignment. Reviewers: brecht Differential Revision: https://developer.blender.org/D5529
2019-08-20Cleanup: outliner range selectionNathan Craddock
No functional changes. This commit simplifies the recursive call, removes unneeded function calls, and adds comments.
2019-08-20Outliner: Add range extend selectNathan Craddock
Add support for ctrl+shift+lmb to default and industry compatible keymaps to select a range without removing the existing selection.
2019-08-19GPencil: Improve reproject operator in surface modeAntonio Vazquez
This change was applied to GP branch during the period 2.80 cannot be updated. Now the patch can be moved to master. The commit fix the problem when reproject over surface in multiframe mode and the surfaces can moved. Also improved the surface algorithm thanks to Lukas W (@geloescht). New Algorithm: Differential Revision: https://developer.blender.org/D4878 Tested by @mendio and @pepeland