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
2020-09-01Merge branch 'master' into active-fcurve-keyframeactive-fcurve-keyframeHans Goudey
2020-09-01Fix T80031: UI: Use a more specific label for stencil mask opacityAaron Carlisle
This is not the opacity of the vertex colors itself but of the stencil mask. Follows up on rBbb4478f2fdd8426d6050bf7b7c09611afeb1bd14
2020-09-01Cleanup: GLFrameBuffer: Reduce indentationClément Foucault
2020-09-01GLFramebuffer: Avoid calling method on a partially destroyed GLContextClément Foucault
This avoid an ASAN runtime error.
2020-09-01Audaspace: port compilation fix from upstream.Joerg Mueller
2020-09-01Fix T79553: StretchTo constraint: Apply Pose changes bone lengthSybren A. Stüvel
Recompute Rest Length stored in the StretchTo constraint after applying the current pose as rest pose. The "Apply Pose as Rest Pose" operator applies the evaluated pose as rest pose, which means that the change in bone length from the StretchTo constraint is applied to the rest pose. The bug was caused by the fact that the StretchTo constraint wasn't updated for the new pose, and thus still applied the same scale factor to the new pose, effectively doubling its effect. The "Apply Pose as Rest Pose" operator now forces a recompute of the rest length cached in the StretchTo constraint data. As a result, the length of the bone before and after the pose is applied remains the same. The X and Z scale (perpendicular to the bone length) are reset to 1.0, as with the applied pose the bone isn't stretched or squashed any more.
2020-09-01USD: remove library initialisation hackSybren A. Stüvel
Remove the hack for library initialisation; this is no longer necessary as the required information can be passed to the USD library after its static initialisers have run. This new approach is compatible with both the patched and original USD library. This means that platform maintainers don't need to rebuild the USD library until the next upgrade. Manifest Task: https://developer.blender.org/T80320
2020-09-01USD: move library initialisation from `main()` to USD moduleSybren A. Stüvel
Initialize the USD library when used (instead of at startup), so that this can happen inside the IO/USD module. This makes calls to the USD library local to Blender's USD code. Note that failure to find the USD JSON files will now only be reported when the USD exporter is used, and not on every startup of Blender. This is the first step in cleaning up the way Blender patches and initialises the USD library. Manifest Task: https://developer.blender.org/T80320
2020-09-01GPUOffscreen: Remove scissor and viewport state trackingClément Foucault
This was a workaround that is not needed anymore. Fix FT80321 Cropped output with Viewport Render Animation
2020-09-01Fix T80224: Crash after duplicating and hiding vertices while using X Axis ↵Germano Cavalcante
Mirror The mirror map can reference a hidden vertex that is currently ignored in the transformation. Thus the mirror element array is not filled.
2020-09-01Fix ugly alignment of "Mono" option in the SequencerJulian Eisel
Steps to reproduce were: * Open Sequencer, add a sound strip * In the sidebar, open the Adjust > Sound sub-panel * Note the placement of the "Mono" item The layout code would disable decorators if a property came from a non-animatable data-block type. Doing so would mess up the alignment where properties from different data-block types were be mixed. This is not the case any more. Note that when actually adding the decorator, a blank icon is inserted to keep the alignment intact when the data-block type isn't animatable. So the decorator is still not shown, but the alignment looks fine. This may affect more cases. If so, and if that's an issue, the decorators should be explicitly disabled.
2020-09-01Fix (unreported) GPencil cannot deselect points with box/lasso selectPhilipp Oeser
Selecting in empty space wasnt considered as 'changed'. Differential Revision: https://developer.blender.org/D8770
2020-09-01Fix T79941: mantaflow cache doesn't work with ' character in pathJacques Lucke
The fix is to escape the `'` character as well. Reviewers: sebbas Differential Revision: https://developer.blender.org/D8773
2020-09-01Fix T80328 Commit introduced build warnings in WindowsClément Foucault
2020-09-01Gizmo: Navigate: Make use of UI_draw_roundbox_4fvClément Foucault
This improves circles AntiAliasing, and line antialiasing. This keeps the old drawing method (3d spheres) for the selection pipeline. This was suggested by @harley on devtalk.
2020-09-01UI: Widget: Add conservative raster to avoid cut widget bordersClément Foucault
This avoids incorrect AA when the widget is not perfectly alligned with the pixel grid.
2020-09-01Transform: Keymap: Enable Auto Constraint with Middle Mouse + ShiftGermano Cavalcante
2020-09-01Transform: remove MOD_CONSTRAINT_PLANEGermano Cavalcante
It conflicts with MOD_PRECISION and was not really working properly.
2020-09-01Fix constrain plane masking shift eventGermano Cavalcante
This prevented transformation with a precision modifier.
2020-09-01Fix T80258: UILayout.prop_search() issues with datablock namesPhilipp Oeser
If the search menu was used for a string property, and a data-block was selected from the search, the value set would be an invalid name. The property would get the modified UI string, not the proper data name set. This problem was already once solved in rB249ccab111ac, but resurfaced in rB937d89afba36. Now only use the modified UI string if requires_exact_data_name is not true. Note: the comments in rB249ccab111ac [reg. library hints and string properties, also that pointer properties are preferred over string properties when dealing with IDs] still apply. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D8759 (cherry picked from 2.90 commit cb0b0416f454419cd1902434f7dffa2682417a56)
2020-09-01Fix T64267: 'Add Snap Point' does not work with Ctrl pressedGermano Cavalcante
2020-09-01Transform: Move some hardcoded keyitems to keymap_data in pythonGermano Cavalcante
Keymaps must be customized by the user. But this is not the case for hardcoded keymaps. Also the repetition of hardcoded and user-defined keyitems may induce the user to think they have made a mistake or it is a bug. Differential Revision: https://developer.blender.org/D6454
2020-09-01Cycles: Fixed Cycles standalone build.Stefan Werner
The node refactor in 429afe0c626a was missing in the standalone code.
2020-09-01Fix double include of `gmp.cmake`Sybren A. Stüvel
This fixes `make deps` complaining about the `extern_gmp` project being defined twice.
2020-09-01Sequencer: Fix crash caused by stereo rendering fixClément Foucault
Caused by rB2e908156d0c7 This was caused by the sequencer timeline area not using a GPUViewport but still using `sequencer_draw_preview`.
2020-09-01Cleanup: GPUContext: Remove unused functionsClément Foucault
2020-09-01OCIO: Make GLSL implementation use GPUUniformBuf to avoid debug errorsClément Foucault
Now that we use internal state info, we require drawing that uses the GPU api to use it throughout the whole pipeline. This is in order to track the GL state and do our own error checking.
2020-09-01GPU: Move UBO binding validation to GL backendClément Foucault
This also make the validation quicker by tracking the currently bound slots.
2020-09-01EEVEE: Volumetric: Fix Mesa Compiler errorClément Foucault
The compiler does not seems to understand the `const` in the function declaration and complains about non constant indexing of unsized array.
2020-09-01EEVEE: Volumetric: Fix missing UBOClément Foucault
This is undefined behavior on certain system.
2020-09-01Cleanup: Fix warnings in our intern bullet api wrapperSebastian Parborg
No functional changes.
2020-09-01Cycles: Followup fixes for node ownership refactor.Stefan Werner
There were some places where nodes still would end up without owners. See D8540 and 429afe0c626a
2020-09-01Fix: Active rigidbodies would not recive updates after the stopped being ↵Sebastian Parborg
animated Because depsgraph isn't rebuild for animated properies, we have to assume that active bodies will always want to have updates from the rigidbody simulation.
2020-09-01CMake: Fix linking errors with gmp librarySergey Sharybin
gmpxx library (C++ version of gmp) uses symbols from libgmp, which means the libgmp is to be passed to the linker after libgmpxx.
2020-09-01Fix compilation error with -Werror=array-boundsJacques Lucke
This error happened only with O2 or O3 in my tests. Casting to uintptr_t and back seems to quiet the compiler.
2020-09-01Cleanup: EEVEE bloom shadersJeroen Bakker
- moved to eevee_shaders - added to test suite Reviewed By: Clément Foucault Differential Revision: https://developer.blender.org/D8763
2020-09-01PyAPI: expose 'bl_options' for operators in bpy.opsCampbell Barton
Useful for checking which operators are only for internal use.
2020-09-01RNA: rename Area.ui_type 'VIEW' enum identifier to 'IMAGE_EDITOR'Campbell Barton
The term makes sense in the image editor, but not among other editors where we had both VIEW and VIEW_3D.
2020-09-01PyAPI: prevent leading comma when printing some enumsCampbell Barton
BPy_enum_as_string (used for creating error messages) showed a leading comma for enums that used category headings. While harmless, it looks odd.
2020-09-01Fix T78601: User count errors when reading home-fileCampbell Barton
Calling: bpy.ops.wm.read_homefile(use_empty=True) exposes invalid user-counts in versioning code. Simplified logic for assigning materials in versioning code. Caused by 29f3af9527259.
2020-09-01Fix errors ensuring grease pencil paletteCampbell Barton
- Direct assignment caused ID user counts to be invalid. - The first palette would always be used, even when the named palette searched for was found. Also pass 'const' string to `hex_to_rgb`, avoid casting to 'non-const'.
2020-09-01Cleanup: don't register mix-in menu classCampbell Barton
The class is only used as a base for other menus. This caused complications for tests that inspect menu contents.
2020-09-01Cleanup: correct doxy sectionsCampbell Barton
2020-09-01Fix T80031: UI: "Stencil Opacity" is vagueAaron Carlisle
This affects the mask opacity not the stencil itself.
2020-09-01Fix T80100: To sphere tooltip uses "vertices" even in object modeAaron Carlisle
2020-09-01GL: Fix two GLerrorClément Foucault
The gizmo one was only reproducible in debug builds. The GLImmediate one was only affecting amdpro drivers when --debug-gpu was enabled.
2020-09-01GLImmediate: Use CL_CHECK_ERRORClément Foucault
This provides a bit more debugging info on MacOS.
2020-09-01GL: Move MacOS debug callback to gl_debug.ccClément Foucault
And format to use the same callback as standard debugging layer.
2020-09-01GPUDebug: Reformat GL debug callbacks and move them to GL backendClément Foucault
Now the callbacks are setup for each debug context. The formating has been reworked to be less verbose and make errors and warnings stand out from the notifications. Errors are most of the time sufficiently explicit in their message. This also remove the support for AMD_debug_output which is 10 years old. This is related to the Vulkan port T68990.
2020-09-01GHOST: Enable debug context on offscreen context tooClément Foucault
This was a long standing TODO. This was also preventing debug callbacks form other context than the main window.