David-Haver
  • Joined on 2024-03-10
David-Haver commented on pull request blender/blender#116582 2024-04-23 00:40:50 +02:00
Geometry Nodes: Add selection and depth options to realize instances

@HooglyBoogly if I look in files changed then the changes are there. I don't know why it will not show them to you, maybe there is some bug becouse arye merged a pull request from me into his…

David-Haver commented on pull request blender/blender#116582 2024-04-22 12:05:00 +02:00
Geometry Nodes: Add selection and depth options to realize instances

I am hoping its clearer now. this section makes sure generic output attributes exists so later code can be better optimaized.

David-Haver pushed to realize-depth at David-Haver/blender 2024-04-18 18:48:17 +02:00
702784e07c Better explaning a part of execute_instances_tasks
317e703221 Change to the realize all field tool tip
Compare 2 commits »
David-Haver pushed to realize-depth at David-Haver/blender 2024-04-17 12:51:04 +02:00
8afa69f54b Fixes to compiler error
David-Haver created pull request aryeramaty/blender#6 2024-04-17 00:40:36 +02:00
Realize depth code review fixes
David-Haver pushed to realize-depth at David-Haver/blender 2024-04-17 00:25:13 +02:00
78c758b4e6 Fixed static placment in a function decleration
b0a0b346bc Fixed spaces in comments
45b9d27a23 Changed geometry_set_from_reference to don't use an out param
0e4f509040 Forgot to make format
Compare 4 commits »
David-Haver commented on pull request blender/blender#116582 2024-04-16 18:36:36 +02:00
Geometry Nodes: Add selection and depth options to realize instances

Ok didn't see that it is basically a wrapped pointer.

David-Haver commented on pull request blender/blender#116582 2024-04-16 18:09:12 +02:00
Geometry Nodes: Add selection and depth options to realize instances

Isn't it more costly to create a local GeometrySet and then copy twice it in the return than to use an output param?.

David-Haver commented on pull request blender/blender#116582 2024-04-16 18:04:46 +02:00
Geometry Nodes: Add selection and depth options to realize instances

The change was done because this switch case was needed in two places. Here and in attribute_foreach. It was put into a separate function and instead of creating a local GeometrySet and calling…

David-Haver pushed to realize-depth at David-Haver/blender 2024-04-16 17:47:19 +02:00
67cae5c971 Reverting styling changes to simplfy the PR.
David-Haver pushed to realize-depth at David-Haver/blender 2024-04-16 17:36:30 +02:00
7f9df6a168 fixing miss caculated transforms
David-Haver commented on pull request blender/blender#116582 2024-04-15 23:45:37 +02:00
Geometry Nodes: Add selection and depth options to realize instances

Sure. @mod_moder requested that change in a prior review. Can be reverted here and be done in a later PR.

David-Haver commented on issue blender/blender#119589 2024-04-08 10:35:00 +02:00
Blender crashes as adding geometry nodes

Can someone confirm that the crash is still happening? I couldn't reproduce it myself in either linux or windows and when looking at Mac - Blender Assert Back Trace.txt I saw that the code have…

David-Haver pushed to realize-depth at David-Haver/blender 2024-04-05 21:25:04 +02:00
f46b2d0d13 Fix: wrong index
David-Haver deleted branch Fix-Crash-with-Geometry-Nodes-and-Bake-node-#119958 from David-Haver/blender 2024-04-04 19:05:40 +02:00
David-Haver created pull request blender/blender#120258 2024-04-04 15:58:22 +02:00
Fix #119958: Crash when baking during animation
42196ea8a6 Fix #119958: Crash when baking during animation
b0bebd6265 Fix #119911: Compositor saved in 4.2 does not work in 4.1
6956a609c9 Cleanup: remove underscore prefix since the argument is used
79ca9e5afe Fix: File Output node always has inputs of type Color
0c91ad9008 Fix #120175: File Output node has wrong BW output
Compare 10 commits »
David-Haver commented on issue blender/blender#119958 2024-04-04 11:55:22 +02:00
Crash with Geometry Nodes and Bake node

The problem seems to be that the WM_set_locked_interface(job->wm, true); happens inside the thread and then the main thread may check the lock while the thread is in the middle of changing it. I…

David-Haver commented on issue blender/blender#119958 2024-04-02 18:51:18 +02:00
Crash with Geometry Nodes and Bake node

where can I read about ASAN? I tried googling it but did not find anything relevant. after changing the code to always use BakeRequestsMode::Sync I wasn't able to reproudce the crash. if no one…