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-04-19Cleanup: use staticmethod where appropriateCampbell Barton
2019-04-19Missing from last commitCampbell Barton
2019-04-19Cleanup: correct misleading classmethod argCampbell Barton
2019-04-19Cleanup: mark unused arguments in UI scriptsCampbell Barton
Quiet's pylint W0613 warning, also remove some unused args.
2019-04-19UI: move top-bar into the spaces headerCampbell Barton
Currently this is only in the 3D viewport however all spaces that use the tool-system will have this region added. D4680 by @brecht with own updates.
2019-04-18Armature: remove remains of the object-level deformation data cache.Alexander Gavrilov
Now that B-Bone shape data is kept in bPoseChannel_Runtime, the armature level cache only holds one quaternion value per bone. It can also be moved to runtime, and the structure removed. This has an additional effect that, as far as I can tell, now the Armature modifier can run as soon as all of the bones it actually needs are done, thus making T59848 a purely depsgraph level problem.
2019-04-18UI: Revert fix T37463: Y-clamp for header-only spacesCampbell Barton
This reverts 91d8519c4782 since I can't redo the reported error which was in the old header-only info space.
2019-04-18PyTests: do not load addons in load_py_modules test.Bastien Montagne
It makes no sense to load add-ons here, we already do that (in a more complete way) in load_addons test, this is only adding overhead and doubling code to maintain). Also do not try to load-as-modules add-ons that are not 2.8-ready, and some other misc fix. load_py_modules test should be passing again now. Thanks to @sergey who did part of the work here as well.
2019-04-18Fix T63332: backup and restore bPoseChannel_Runtime data during COW.Alexander Gavrilov
2019-04-18Images: support packing edited images as OpenEXR or PNG.Brecht Van Lommel
This way float and multilayer images can now be packed without data loss. This removes the as_png option and always uses the appropriate file format depending on the image contents.
2019-04-18Cleanup: unused region init functionsCampbell Barton
2019-04-18UI: collapse 3D view collections visibility panel by default.Brecht Van Lommel
2019-04-18OpenEXR: add support for writing EXR files to memory.Brecht Van Lommel
2019-04-18Cleanup: deduplicate single/multiview image packing code.Brecht Van Lommel
2019-04-18Cleanup: move image saving code to blenkernel.Brecht Van Lommel
2019-04-18Cleanup: make image saving code reusable outside operator.Brecht Van Lommel
2019-04-18Cleanup: deduplicate image user initialization, make consistent.Brecht Van Lommel
2019-04-18GPencil: Add option to mix color with textureAntonioya
This was already supported in Fill, but not in Strokes. This adds more artistic options when use textured strokes.
2019-04-18Cleanup: add trailing commas to avoid right shiftCampbell Barton
2019-04-18PyTests: do not try to load non-2.8-ready add-ons.Bastien Montagne
2019-04-18GPencil: Fix Drawing Path follow error while drawingAntonioya
The strokes was aligned to drawing path only when the stroke was completed. Now, the stroke is aligned while drawing too.
2019-04-18GPencil: Initialize variable to remove console warningAntonioya
2019-04-18Missing 2.7x keymap update from last commitCampbell Barton
2019-04-18UI: replace toggle header with a propertyCampbell Barton
2019-04-18Alembic: catch weird exceptions from library instead of aborting Blender.Bastien Montagne
Similar to what is done e.g. in AbcMeshReader::read_mesh()...
2019-04-18AMD glitch: missing changes in f41ab375f38bmano-wii
It was committed an earlier version of the patch which missed these changes. Differential Revision: https://developer.blender.org/D4700
2019-04-18Cleanup: add 'if 0' comment why code is repeatedCampbell Barton
Avoid potentially adding back the problem in the future.
2019-04-18Fix T62792: AMD glitch when clipping region in edit mode.mano-wii
The `AMD Radeon HD 7600M` compiler is usually buggy for Geometry Shaders. In this case, indexing was causing problems in `gl_in[i].gl_ClipDistance[0]`. Reviewers: fclem Differential Revision: https://developer.blender.org/D4700
2019-04-18PyAPI: remove support for importing text blocks as modulesCampbell Barton
Allowing direct import of text blocks isn't especially useful, instead add `text.as_module()` script authors can do this explicitly if it's needed. Now the text "Register" option executes instead of loading as a module. This removes the need to keep track of the current Main, and C code to override Python's import & reload.
2019-04-18Fix T63590: Blender crashes when deleting particle hair keysSergey Sharybin
2019-04-18Python API: allow passing integer to some BGL functions instead of bgl.BufferBrecht Van Lommel
These parameters can be both pointers and offsets into a bound buffer, so we need to support both even if it's possible to cause crashes this way.
2019-04-18Fix Embree link error after recent cmake changesMaruf Sarker
Differential Revision: https://developer.blender.org/D4704
2019-04-18UI: option to toggle 'Adjust Last Operation'Campbell Barton
2019-04-18Cleanup: comments, wrappingCampbell Barton
2019-04-18UI: Expand Enum Items Over Multiple RowsJeroen Bakker
Expanding enum items in a small area would render the names with dots, what is a bad solution. When you use expand directly on a `grid_flow` or `column_flow`, it will render the items on multiple lines, giving more control to the developer. Reviewers: campbellbarton, brecht, mont29 Differential Revision: https://developer.blender.org/D4698
2019-04-18Cleanup: correct commentCampbell Barton
2019-04-18UI: move region toggling to propertiesCampbell Barton
Each space had separate operators, duplicating logic. Use RNA properties instead so adding the ability to toggle other region types (floating redo region for eg) doesn't need to have an extra operator per space type. It's also nicer to show a check-box for something which can be toggled.
2019-04-18CMake: correct bad change to ceres linkingCampbell Barton
Revert part of 45055199a2e51
2019-04-18Fix T63513: Gpencil - Circle guide activation with shortcut "C" is not ↵Charlie Jolly
working properly Only add missing events after first point is added.
2019-04-18Disable clang-format for LibmvSergey Sharybin
This is an odd-ball: it's a library which has own style and guidelines, and just happened to be developed by Blender developers and also happened to rely on some functionality of intern/ for its C-API. Might consider using Google's clang-format in the future (this is what the style is supposed to be in this library).
2019-04-18Fix compilation error when using SDL dynamic loadingSergey Sharybin
2019-04-18Merge branch 'blender2.7'Sergey Sharybin
2019-04-18Buildbot: Attempt to fix wrong branch in buildinfoSergey Sharybin
For some reason the buildinfo header was not re-generated. The root reason is not really clear to me, so simply remove the header similar to the CMake cache.
2019-04-18Fix T63663: Object mode proportional editing affects objects which are ↵Sebastian Parborg
disabled for selection Objects which are not selectable are no longer affected by proportional transformations.
2019-04-18Cleanup: remove last bits of WITH_LEGACY_DEPSGRAPH CMake option.Bastien Montagne
Legacy depsgraph has been removed from Blender since several months already...
2019-04-18Overlay Engine: Option to Disable AA Ortho GridJeroen Bakker
When in Axis alligned orthographic view a grid was always displayed. With this change the user can enable/disable this grid. The Grid is always visible and editable, but only rendered active when user is in quad view, or axis aligned ortho view. Reviewers: brecht, fclem Maniphest Tasks: T63517 Differential Revision: https://developer.blender.org/D4699
2019-04-18Fix mistake in recent commit.Jeroen Bakker
Needed to remove footers and not headers
2019-04-18clang-format: add statement macroCampbell Barton
Disabled for now but corrects syntax when we switch to v8.
2019-04-18Cleanup: indentation from braces in '#if 0'Campbell Barton
2019-04-18Cleanup: comment blocksCampbell Barton