Revision 1703e65 by Bastien Montagne / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
LibOverride: Do not tag overrides for complete recalc. This was done as some sort of safety, but should not actually be needed, and including tags like `ID_RECALC_POINT_CACHE` e.g. makes usage of point caches impossible with liboverrides (since it would systematically invalidate all cache on file load). In theory we should not have to tag anything here in fact, RNA accessors are supposed to take care of it, but for now we keep the `ID_RECALC_COPY_ON_WRITE` one. Part of first step of T82503: support disk cache in liboverrides. |
Revision 2474b6c by Antonio Vazquez / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
GPencil: Cleanup clang format |
Revision 2946762 by Nathan Craddock / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Collections: Prevent setting scene collection color tag from rna It should not be possible to set the scene collection's color tag through rna. Also adds a missing notifier for setting the collection color tag from python. |
Revision 2b838a9 by Bastien Montagne / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
LibOverride: Make PointCache RNA properties overridable. Note that due to convoluted layout of point caches in RNA (active one also storing list of all available ones), we'll often have the pointcache overrides rules twice. Should not be a huge problem, practically speaking. Part of first step of T82503: support disk cache in liboverrides. |
Revision 38ddbfa by Nathan Craddock / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
UI: Remove remaining uses of old collection icon After rB452a1c7b3838 there were still a few cases where the old collection icon was used in the interface. Replace these with the new filled collection icon. |
Revision 4a76934 by Nathan Craddock / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Outliner: Fix memory errors in runtime data Fix a heap-use-after-free when duplicating outliner editors, and fully free runtime data when freeing outliner editors. |
December 19, 2020, 04:00 (GMT) |
Cleanup: Make panel type flag names more clear The overlap with the `Panel` flags that start with "PNL" was quite confusing because wasn't clear which enum a flag was from. The new names are a bit longer, but the clarity is worth it. |
December 19, 2020, 04:00 (GMT) |
GPencil: Remove "angle_split" from Multiply modifier. |
Revision 63ceade by Antonio Vazquez / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
GPencil: Missing initialization in previous commit |
Revision 640b732 by Sergey Sharybin / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Ceres: Update to upstream version 2.0.0 We already were using one of earlier RC of the library, so there is no expected big changes. Just making the update official, using official version and stating it in the readme file. |
Revision 8f3a7d7 by Campbell Barton / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Cleanup: use IMB_FTYPE_NONE instead of 0 for imbuf format comparison Image format code checked the file type against an enum except for zero which is used when the format can't be detected. Also add doc-strings to some of the image file type callbacks. |
Revision 8ff765a by Antonio Vazquez / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
GPencil: Fix unreported crash in some cases when duplicate a stroke Some pointers were not initialized. |
Revision 904a2a6 by Sergey Sharybin / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
CMake: Extend strict flags cancellation flags Becomes rather annoying to duplicate them across C/C++ GCC/Clang sets, almost as if the test should test both C and C++, and to do it for all compilers. Solves strict warning in the upstream of Ceres library. |
December 19, 2020, 04:00 (GMT) |
Cleanup: Move PanelType flag from DNA to BKE header Since this flag isn't saved in files and PanelType itself is defined in BKE, the flag makes more sense there. |
Revision adda1d2 by Sergey Sharybin / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Revert "Codesign: Versioning code to support older branches" This reverts commit 9d172f007eeb5ade5ddad03e1f71fa4c373855f8. Got a second thought and remembered why it was not done in the first place. The issue here is that the server needs to communicate codesign result back and that must happen within the new protocol. So if the client talks old protocol it is possible to receieve data from it, but is not possible to communicate result back to it. |
Revision cdd182d by Bastien Montagne / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
LibOverride: Adjust PointCache operators to properly handle overrides. LibOverrides only support a small sub-set of PointCache features for now (one cannot add new caches, baking in memory is not supported...). Part of first step of T82503: support disk cache in liboverrides. |
December 19, 2020, 04:00 (GMT) |
GPencil: Fix compiler warning, unused variable |
Revision d598132 by Antonio Vazquez / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
GPencil: Fix callback parameter list error In the previous commit the bGPDframe parameter was removed, but this parameter is required to keep the same function signature. |
December 19, 2020, 04:00 (GMT) |
GPencil: Merge GSoC curve edit mode Differential Revision: https://developer.blender.org/D8660 This patch is the result of the GSoC 2020 "Editing Grease Pencil Strokes Using Curves" project. It adds a submode to greasepencil edit mode that allows for the transformation of greasepencil strokes using bezier curves. More information about the project can be found here: https://wiki.blender.org/wiki/User:Filedescriptor/GSoC_2020. |
Revision eca1309 by Campbell Barton / YimingWu (lineart-bvh, lineart-shadow, temp-lineart-contained) December 19, 2020, 04:00 (GMT) |
Fix building after 2e53b646f6f02ab112e0823b9577ff2e1920faaeq |
|