Chris Blackbourn Chris_Blackbourn
  • UV Editing

  • Joined on 2022-05-04
Chris Blackbourn pushed to main at blender/blender 2023-05-27 06:27:30 +02:00
45bd9b58b9 Merge branch 'blender-v3.6-release'
71d89dfa81 UV: Fix (unreported) uv packing with pinned islands and original bounding box
Compare 2 commits »
Chris Blackbourn pushed to blender-v3.6-release at blender/blender 2023-05-27 06:19:43 +02:00
71d89dfa81 UV: Fix (unreported) uv packing with pinned islands and original bounding box
Chris Blackbourn commented on pull request blender/blender#108253 2023-05-26 04:59:35 +02:00
UV: Update ui for pack islands operator

Before: image After 40bb54fc5f image

Chris Blackbourn commented on issue blender/blender#107829 2023-05-25 10:59:49 +02:00
How to handle difference in sinf/cosf for M1

In theory, both sides should be equal, no problem.

Can't you simply use a relative epsilon comparison instead of exact equality here?

I think the underlying problem is closer to…

Chris Blackbourn created pull request blender/blender#108253 2023-05-25 05:08:45 +02:00
UV: Update ui for pack islands operator
Chris Blackbourn created branch uv-pack-islands-ui in Chris_Blackbourn/blender 2023-05-25 05:06:50 +02:00
Chris Blackbourn pushed to uv-pack-islands-ui at Chris_Blackbourn/blender 2023-05-25 05:06:50 +02:00
40bb54fc5f UV: Update ui for pack islands operator
92b4e74985 Fix out-of-bounds read drawing bundles with custom-colors
43a31d3c93 Fix #107913: Creation of liboverrides of Scenes should not be allowed.
babdfc2294 Fix #107913: LibOverride: Hard Crash Opening Blender File with overriden active scene.
43e6f110f4 Fix (unreported) ID copying code tagging embedded IDs as no-main data.
Compare 10 commits »
Chris Blackbourn commented on issue blender/blender#107829 2023-05-25 00:11:28 +02:00
How to handle difference in sinf/cosf for M1

If an algorithm is sensitive to that level (giving such huge different results caused by such small differences of values), then either this should be documented and accepted as a known…

Chris Blackbourn pushed to main at blender/blender 2023-05-24 01:36:33 +02:00
0f87bdfd8f Merge branch 'blender-v3.6-release'
f96e108b63 UV: Complete options for rotation during uv packing
Compare 2 commits »
Chris Blackbourn pushed to blender-v3.6-release at blender/blender 2023-05-24 01:28:47 +02:00
f96e108b63 UV: Complete options for rotation during uv packing
Chris Blackbourn commented on pull request blender/blender#108185 2023-05-23 23:26:17 +02:00
Fix #108171: crash calling bpy.ops.uv.pack_islands

Not sure what the benefit is though? It might get called from somewhere else with nullptr parameters.

Anyways, do you want me to update the patch? Yes please!

Chris Blackbourn commented on pull request blender/blender#108185 2023-05-23 15:11:26 +02:00
Fix #108171: crash calling bpy.ops.uv.pack_islands

Nice spotting! It should be safe to pass nullptr in here. Fix is slightly different, add null-protection around the writes...

Chris Blackbourn pushed to main at blender/blender 2023-05-22 23:41:42 +02:00
f85fb56a4a Merge branch 'blender-v3.6-release'
43fe7bec4f Cleanup: format
a569344a81 Fix: Build error from ae9ac99d2b
ae9ac99d2b Fix #108117: Crash in uv editor with hidden geometry
Compare 4 commits »
Chris Blackbourn pushed to blender-v3.6-release at blender/blender 2023-05-22 23:39:28 +02:00
43fe7bec4f Cleanup: format
a569344a81 Fix: Build error from ae9ac99d2b
Compare 2 commits »
Chris Blackbourn deleted branch uv-fix-108117-2 from Chris_Blackbourn/blender 2023-05-22 23:23:34 +02:00
Chris Blackbourn closed issue blender/blender#108117 2023-05-22 23:23:33 +02:00
Blender crashes on UV scaling.
Chris Blackbourn merged pull request blender/blender#108130 2023-05-22 23:23:30 +02:00
Fix #108117: Crash in uv editor with hidden geometry
Chris Blackbourn pushed to blender-v3.6-release at blender/blender 2023-05-22 23:23:29 +02:00
ae9ac99d2b Fix #108117: Crash in uv editor with hidden geometry
Chris Blackbourn commented on pull request blender/blender#108130 2023-05-22 12:21:18 +02:00
Fix #108117: Crash in uv editor with hidden geometry

check from 58c54b5859 Might possibly be redundant then? (havent checked though)

Surely this would have caused crashes long ago if the functions were returning NULL, what changed…