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-02BLF: pass code-point to BLF_has_glyphCampbell Barton
Avoid BLF having to be concerned with decoding the string (which can fail). Also remove redundant extra zero byte from strings.
2019-05-02Cleanup: unused warningCampbell Barton
2019-05-01Fix T61619: Some VSE attributes with keyframes are not sensibly evaluatedRichard Antalik
when the scene is referenced as a strip from another VSE scene Fix T49658: Evaluation / animation of f-curves does not correct for a scene's position within another scene Solution: Evaluate animdata before rendering scene seqbase. Reviewed By: brecht Differential Revision: https://developer.blender.org/D4755
2019-05-01Fix T63980: only copy selected curves in Copy Keyframes from Graph Editor.Alexander Gavrilov
Otherwise things can become confusing due to copying unwanted curves, especially if "Only Selected Curve Keyframes" is enabled, and thus selected keyframes from other curves may not be visible. Now Copy Keyframes behaves exactly like Paste Keyframes.
2019-05-01UI: add pixel units for some theme settingsBrecht Van Lommel
2019-05-01UI: move object origin size preference to themesGeorge Vogiatzis
Differential Revision: https://developer.blender.org/D4657
2019-05-01UI: remove outliner vertical separatorsHarley Acheson
This removes the vertical bar separators between items and subitems (for closed rows), and the vertical lines between the columns of restriction icons. The vertical bars and lines don't really serve any useful purpose and add some visual fuzziness and confusion. Best to concentrate the eye on the items of content, not the separators between them. Differential Revision: https://developer.blender.org/D4743
2019-05-01UI: remove outliner highlight selection gapHarley Acheson
When rows were highlighted - for selection, hover, or search - the highlighted bar would not take up the entire vertical space but instead leave a gap. That gap generally looks like a separator between items, adding complexity and fuzziness for no real benefit. Differential Revision: https://developer.blender.org/D4742
2019-05-01UI: use Mac key symbols in menus on macOS, instead of text like "Cmd"Harley Acheson
On Windows "Cmd" is also replaced with "Win". Differential Revision: https://developer.blender.org/D4689
2019-05-01UI: make outliner hierarchy line width take into account DPIHarley Acheson
Differential Revision: https://developer.blender.org/D4744
2019-05-01UI: improve readability of Normals menu in edit modeGeorge Vogiatzis
Also rename operators to match names in the menu. Differential Revision: https://developer.blender.org/D4659
2019-05-01Alembic: integrate cache file into the dependency graphBrecht Van Lommel
* The cache file datablock is now evaluated as part of the dependency graph, creating/freeing the Alembic file handle matching the current frame. Modifiers and constraints depend on this evaluation. * Cache file handles and readers now only exist on COW datablocks, never the original ones. * Object data paths are flushed back to the original for the user interface. * The cache file keeps a list of all readers associated with its handle, and automatically frees them when the handle is freed. This kind of sharing of data across datablocks is weak but we have no better mechanism for it. Fix T62720: Alembic sequences not working and crashing Differential Revision: https://developer.blender.org/D4774
2019-05-01Eevee: Fix crash when rendering due to recent lookdev refactorClément Foucault
2019-05-01Modifiers: support parallelism in Armature and Lattice Deform.Alexander Gavrilov
This partially mitigates the performance drop in Spring 02_055_A.anim caused by dependency changes in D4715. Differential Revision: https://developer.blender.org/D4753
2019-05-01Fix crash on unlinking sceneRichard Antalik
Fix crash when unlinking scene and "Use Sequence" property is set. Reviewed By: brecht Differential Revision: https://developer.blender.org/D4756
2019-05-01Use cache only in current sceneRichard Antalik
Disable cache use, when rendering another scene seqbase. Now cache limit applies only to one scene, so it can be overshot. Cache of other scenes can be filled manually still. Reviewed By: brecht Differential Revision: https://developer.blender.org/D4757
2019-05-01Fix T49589: 2.78 VSE no longer caching Node Editor scene stripsRichard Antalik
Sequencer cache was cleared when rendering compositor output. Reviewed By: brecht Differential Revision: https://developer.blender.org/D4758
2019-05-01ClangFormat: enable ReflowCommentsCampbell Barton
2019-05-01Cleanup: comments (long lines) in cyclesCampbell Barton
2019-05-01Cleanup: comments (long lines) in various intern/ libsCampbell Barton
2019-05-01Cleanup: comments (long lines) in dualconCampbell Barton
2019-05-01Cleanup: comments (long lines) in rigidbodyCampbell Barton
2019-05-01Cleanup: comments (long lines) in mikktspaceCampbell Barton
2019-05-01Cleanup: comments (long lines) in atomicCampbell Barton
2019-05-01Cleanup: comments (long lines) in stringCampbell Barton
2019-05-01Cleanup: comments (long lines) in utfconvCampbell Barton
2019-05-01Cleanup: comments (long lines) in ghostCampbell Barton
2019-05-01Cleanup: correct arg wrapping from recent cleanupCampbell Barton
2019-05-01UV Sculpt: improve tool-system integrationCampbell Barton
In 2.7x UV sculpt was a kind of sub-mode (a toggle with it's own key-map & drawing code). Move this to an operator that uses the tool-system, this simplifies internal logic, especially brush selection which now matches sculpt and other paint modes. - Remove toggle used to enable uv sculpt. - Expose the brush, which was already used but there was no way to select different brushes. - Make UV sculpt use paint paint tool slots (using brushes how all other paint mode currently do). - Move UV Sculpt keymap to the tools keymap. - Remove Q to toggle UV sculpt mode, S/P/G keys to switch tools.
2019-05-01UI: show UV sculpt panels in the image editorCampbell Barton
2019-05-01Fix line width for image sample size displayCampbell Barton
2019-05-01Eevee: Lookdev: Cleanup implementation & support for Bloom and TAAClément Foucault
Make Lookdev works with bloom and TAA by rendering it before TAA and fixing the motion vectors of the lookdev balls. Rework Lookdev to remove much of its complexity. Use simpler matrices with more understandable setup code.
2019-05-01Eevee: Add support for alpha background in viewportClément Foucault
Viewport now displays alpha checkerboard pattern like Cycles does when film alpha is set to "Transparent". Some small workarounds were necessary for Depth of Field and correct TAA support.
2019-05-01DRW: Draw checkerboard alpha pattern for CyclesClément Foucault
Add checkerboard alpha pattern like it was in 2.79
2019-05-01DRW: Add DRW_STATE_BLEND_PREMUL_UNDERClément Foucault
Just basic alpha under operation with premultiplied source.
2019-05-01Cleanup: long function call in interface_draw.cClément Foucault
2019-05-01Industry Compat Keymap: Support recent feature to deselecting by clicking in ↵William Reynish
empty areas Same as default keymap
2019-05-01Cleanup: Redundant struct specifierSergey Sharybin
2019-05-01Cleanup: use BKE_pchan_mat3_to_rot / rot_to_mat3 utility functionsCampbell Barton
2019-05-01BKE_pchan: add BKE_pchan_rot_to_mat3Campbell Barton
Useful to get the un-scaled rotation from a pose channel.
2019-05-01UI: move image paint panels into the image side-barCampbell Barton
- Move painting brush panels into the image side-bar. - Add active tool panel to the image side-bar.
2019-05-01Fix T64049: Unset space type crashesCampbell Barton
2019-05-01ClangFormat: run with ReflowComments on source/Campbell Barton
Prepare for enabling ReflowComments.
2019-05-01Cleanup: comments (long lines) in ikpluginCampbell Barton
2019-05-01Cleanup: comments (long lines) in compositorCampbell Barton
2019-05-01Cleanup: comments (long lines) in drawCampbell Barton
2019-05-01Cleanup: redundant lookupCampbell Barton
2019-05-01Fix error storing proportional editing for redoCampbell Barton
Missed in recent changes to proportional edit mode.
2019-05-01Outliner: Fix "Unlink" not working for parented objectsDalai Felinto
How to reproduce it: * Parent an object to another in the same collection. * RMB the child object and try to "unlink" it.
2019-05-01Cleanup: comments (long lines) in modifiersCampbell Barton
Also remove duplicate comments in headers.