Block a user
Lukas Tönne
pushed to fix-curve-to-mesh-dvert-attributes at LukasTonne/blender
2024-03-11 11:17:42 +01:00
5524132763
Add back fast path for poly curves.
9cec3c37e8
Merge branch 'main' into fix-curve-to-mesh-dvert-attributes
af6d09b439
Fix: GPv3: Armature modifier crash when vertex groups are empty
400776a868
Move
ensure
calls to a higher level.
a58bf79b95
Merge branch 'main' into fix-curve-to-mesh-dvert-attributes
Fix #117997: Crash trying to copy vertex group attributes as spans
Ok, looked into the constructor and it actually does a materialize
internally. That wasn't clear to me.
Fix: GPv3: Armature modifier crash when vertex groups are empty.
Fix #117997: Crash trying to copy vertex group attributes as spans
I don't see how this would work: GVArraySpan
can wrap the input src
array but is not mutable (can't materialize into it). GVMutableArraySpan
is mutable but can't be simply constructed from…
Fix #117997: Crash trying to copy vertex group attributes as spans
Ok, makes sense. I'll add a comment though, because i don't think it's obvious why this works for poly curves.
5ad9f9dc90
Cleanup: unused includes in source/blender/io
5b522359ee
Cleanup: Centralize MSVC conformance related cmake items
61a88e525b
Windows libs: OSL 1.13.7, OIDN 2.2.1
e33f5e36ac
Cleanup: spacing around C-style comment blocks
91229f0e16
Cleanup: use full sentences for comments in transform & windowmanager
Lukas Tönne
pushed to volume-grid-nodes-multifunction at LukasTonne/blender
2024-03-10 09:09:32 +01:00
6574eb8709
Merge branch 'volume-grid-nodes' into volume-grid-nodes-multifunction
eadd18a240
Merge branch 'main' into volume-grid-nodes
e07e983fc1
Fix: Memory leak when inserting keyframes with NLA offset
8f120749dd
Fix #119021: Crash when adding GP object
6ed4282771
GPencil: Remove subdiv modifier unused vgroup UI
Fix #117997: Crash trying to copy vertex group attributes as spans
I don't think we can directly materialize into the output buffer because of the interpolate_to_evaluated
call. The input array is per control point, the output is per evaluated point.
Fix #117997: Crash trying to copy vertex group attributes as spans