Jacques Lucke JacquesLucke
  • Hennigsdorf near Berlin
  • Joined on 2013-11-18
Jacques Lucke pushed to attribute-domain-and-type at JacquesLucke/blender 2024-11-19 11:22:17 +01:00
214d4ee876 cleanup
a9f5f87d78 initial rename
e16cc94c5c Merge branch 'blender-v4.3-release'
2b18cad88b Fix #130459: Select tools do not work in Weight Paint
7788c85472 Cleanup: USD: remove dead fields from ImportSettings struct
Compare 10 commits »
Jacques Lucke pushed to main at blender/blender 2024-11-19 11:06:17 +01:00
ae0ab14716 Cleanup: BLI: Binary search first_if and last_if utils
Jacques Lucke merged pull request blender/blender#130380 2024-11-19 11:06:17 +01:00
Cleanup: BLI: Binary search first_if and last_if utils
Jacques Lucke commented on pull request blender/blender#130470 2024-11-19 11:06:15 +01:00
BLI: support constructing Map with items

@blender-bot build windows

Jacques Lucke commented on pull request blender/blender#130380 2024-11-18 21:10:03 +01:00
Cleanup: BLI: Binary search first_if and last_if utils

Debug builds don't help if they don't finish executing on non trivial files unfortunately. In such cases we need to insert the checks in more strategic places that don't cause potentially huge…

Jacques Lucke commented on issue blender/blender#130465 2024-11-18 19:18:56 +01:00
Sculpt Pose brush Squash & Strech deformation sets mesh position to -nan(ind)

Looks like the issue also exists in Blender 4.2 already.

Jacques Lucke commented on pull request blender/blender#130470 2024-11-18 19:15:11 +01:00
BLI: support constructing Map with items

Not sure what you mean. Also, there is no reason the think that it will never be used just because it may not be used initially.

Jacques Lucke commented on pull request blender/blender#130470 2024-11-18 18:49:05 +01:00
BLI: support constructing Map with items

There shouldn't be an assertion for that. It's totally valid that the Map has to allocate if a long list is provided. A static_assert is not possible here, because the length of the list is…

Jacques Lucke commented on pull request blender/blender#130470 2024-11-18 18:42:53 +01:00
BLI: support constructing Map with items
Jacques Lucke pushed to map-span-constructor at JacquesLucke/blender 2024-11-18 18:42:13 +01:00
127df21738 define behaviors for duplicates
Jacques Lucke created pull request blender/blender#130470 2024-11-18 18:39:43 +01:00
BLI: support constructing Map with items
Jacques Lucke created branch map-span-constructor in JacquesLucke/blender 2024-11-18 18:38:40 +01:00
Jacques Lucke pushed to map-span-constructor at JacquesLucke/blender 2024-11-18 18:38:40 +01:00
661841bfe9 add span constructor
Jacques Lucke commented on pull request blender/blender#130229 2024-11-18 18:09:19 +01:00
Refactor: Curves: Various changes to extrude operator

The thing is that all empty IndexRange are considered to be equal, independent of the start. To me that implies that they also should be the same when they are extended. OffsetIndices can…

Jacques Lucke deleted branch readwrite-const-params from JacquesLucke/blender 2024-11-18 17:55:52 +01:00
Jacques Lucke merged pull request blender/blender#130461 2024-11-18 17:55:44 +01:00
Cleanup: Blenloader: add missing const
Jacques Lucke pushed to main at blender/blender 2024-11-18 17:55:43 +01:00
9f0d20c056 Cleanup: Blenloader: add missing const
Jacques Lucke commented on pull request blender/blender#130380 2024-11-18 15:47:44 +01:00
Cleanup: BLI: Binary search first_if and last_if utils

Generally, the assert is right, but it still seems tricky to include it here. The issue is that it has O(n) complexity and the rest of the function has O(log n). That means that it can make debug builds significantly slower in some cases.