Bastien Montagne mont29
  • Amsterdam, The Netherlands
  • Blender developer, mainly focused on 'Core' module.

  • Joined on 2010-10-07
Bastien Montagne pushed to main at blender/blender 2024-11-19 17:18:54 +01:00
716d2bd9e0 Fix #130428 3DView copy/paste: report total number of copied objects.
Bastien Montagne closed issue blender/blender#130428 2024-11-19 17:18:52 +01:00
copy paste between blend files will not take parents into object count on copy but on paste
Bastien Montagne pushed to main at mont29/blender 2024-11-19 15:37:28 +01:00
fcc1c89923 API Doc: improvements/fixes regarding new requirements for __init__/__del__
ee05765cc1 Fix: Overlay-Next: Do not draw object center on duplis
4ae1ca34a3 BLI: support constructing Map with items
1125d6ee15 Cleanup: Attributes: rename AttributeKind to AttributeDomainAndType
4da580236b Refactor: Attributes: split attribute accessors to separate files
Compare 36 commits »
Bastien Montagne pushed to main at blender/blender 2024-11-19 15:37:18 +01:00
fcc1c89923 API Doc: improvements/fixes regarding new requirements for __init__/__del__
Bastien Montagne pushed to main at mont29/blender 2024-11-19 15:19:50 +01:00
1d71da6f7b API Doc: improvements/fixes regarding new requirements for __init__/__del__
Bastien Montagne closed issue blender/blender#130417 2024-11-19 15:13:54 +01:00
Incorrect memory usage report in blender
Bastien Montagne commented on issue blender/blender#130417 2024-11-19 15:13:50 +01:00
Incorrect memory usage report in blender

AFAIK Blender only reports the memory allocated by our own 'Guardedalloc' allocator (call to MEM_get_memory_in_use from ED_info_statusbar_string_ex). So any memory allocated by other…

Bastien Montagne commented on issue blender/blender#130265 2024-11-19 15:01:14 +01:00
API: Properties set with 'HIDDEN' option still appear in Library Overrides outliner tab

Moving this to user interface module, as this is a UI issue.

Still not convinced that we should hide these though.

Bastien Montagne pushed to main at blender/blender-developer-docs 2024-11-19 13:01:59 +01:00
7b4bf0aec6 Update docs/release_notes/4.4/python_api.md
Bastien Montagne commented on issue blender/blender#130265 2024-11-19 12:10:02 +01:00
API: Properties set with 'HIDDEN' option still appear in Library Overrides outliner tab

I am not aware of any fix regarding that behavior. I would guess that it got fixed 'by chance' as part of another code change. maybe @JulianEisel or @Harley would know better?

In any case, I…

Bastien Montagne commented on pull request blender/blender#130407 2024-11-19 12:01:05 +01:00
Creator: Ensure OpenMP runtime is initialized as soon as possible

Thanks for the precisions!

@Sergey afaik we try to avoid using OpenMP in Blender code itself because it can compete with TBB calls, and lead to sub-optimal threads usage? Indeed we cannot do…

Bastien Montagne commented on issue blender/blender#130463 2024-11-19 11:56:26 +01:00
VSE: Wrong font used when pre-fetching is active

I think option 2 also makes the most sense when it comes to required amount of work vs. safe & sound solution. I would rather avoid a global variable there though, I'd expect a mapping per…

Bastien Montagne pushed to tmp-fix-130420 at mont29/blender 2024-11-19 11:32:41 +01:00
705f5daadf Merge branch 'blender-v4.3-release' into tmp-fix-130420
1b67724b1f Tweak some comments (from review).
2b18cad88b Fix #130459: Select tools do not work in Weight Paint
43def5d19d Release: Bump to 4.3 release
1a40efbded Fix #130389: Cycles: Numerical issues in GGX_D with associative math flag
Compare 5 commits »
Bastien Montagne pushed to blender-v4.3-release at mont29/blender 2024-11-19 11:32:05 +01:00
2b18cad88b Fix #130459: Select tools do not work in Weight Paint
43def5d19d Release: Bump to 4.3 release
1a40efbded Fix #130389: Cycles: Numerical issues in GGX_D with associative math flag
Compare 3 commits »
Bastien Montagne commented on pull request blender/blender#130472 2024-11-19 11:29:27 +01:00
Fix #130420: Undo/Redo broken when using Transfer Mode operator.

@Sean-Kim note that this fix adds an extra memfile undo step actually, recording the change of active object.

AFAICT, the undo step added by https://projects.blender.org/blender/blender/src/br

Bastien Montagne commented on pull request blender/blender#130472 2024-11-19 11:20:43 +01:00
Fix #130420: Undo/Redo broken when using Transfer Mode operator.

My opinion regarding 'sculpt' undo types is that they should go to the canal...

The 'unified' undo stack has never really fully worked when mixing undo steps from different types, we still have…

Bastien Montagne approved blender/blender#130480 2024-11-19 09:49:56 +01:00
Fix #130459: Select tools do not work in Weight Paint

Fix looks correct to me (in the sense that it does restore the logic from code before commit 23cd299ba7).

Bastien Montagne commented on pull request blender/blender#130472 2024-11-18 19:42:13 +01:00
Fix #130420: Undo/Redo broken when using Transfer Mode operator.

Actually too late for 4.3.0 anyway... ideally would love to merge it in 4.3 branch before the end of the week though. :)

Bastien Montagne commented on pull request blender/blender#130472 2024-11-18 19:35:36 +01:00
Fix #130420: Undo/Redo broken when using Transfer Mode operator.

@blender-bot build

Luckily the fix is a single line, and add back the creation of an undo step that was removed in breaking commit (9e0b673467). So think it's fairly safe for 4.3.1.

Could