Hi Alessandro,
Unfortunately, Blender is crashing for me when I try to render these
scenes. I've attached the log for when I render the demo simulation.
It was able to render the first couple frames (saving to a series of
images, not a direct video file) before crashing. My computer's total RAM
usage stayed well below 100% the entire time. This is with all renderers
(cycles, evee, workbench), and I have checked that I can render simple
animations (a manually keyframed box that jumped around a bit) without
crashing. I also ran the blender benchmarker and it didn't seem to have any
problems.
Therefore, I believe the issue is caused by the chrono_import tool, not by
inadequate hardware or a bad installation. Please let me know your thoughts.
Thanks,
James
On Wednesday, May 3, 2023 at 4:32:36 PM UTC-4 [email protected] wrote:
> Hi James,
>
> Hi Alessandro,
>
> I tried with out with a vehicle simulation with good success. One more bug
> though and a question:
>
> 3. After clicking File -> New and using the chrono_import option I get
> this error. Closing and re-opening Blender resolves it. [...]
>
> I will look at it when I find some spare time. Thanks for reporting bugs.
>
> However, to confirm, it appears that if I click chrono_import (after
> having already imported a simulation), it will clear the previous data as
> it loads the new? I do not need to fully close and re-launch the program to
> ensure it is using the new data?
>
> Yes, all times you perform the chrono_import menu, it clears the previous
> data and loads the new data.
>
> Few caveats, anyway: it is not 100% sure that there will be "leftovers" at
> each call to chrono_import... to be on the safe side, you might run the
> Blender menus under File/Cleanup/... that remove orphan objects that are
> not referenced anymore.
>
> Also, here when I want to be completely sure to start from scratch, I
> really close and restart Blender.
>
>
> Also, with my vehicle simulation (15 bodies in chrono_assets, none in
> chrono_frame_assets), I only get 5 FPS during playback. I expected it to be
> higher since I eliminated exporting bodies that change each frame (like
> springs) and used only bodies that need a new position / rotation. Is this
> expected behavior due to the CPU-bound task of instantiating /
> uninstantiating objects each frame?
>
> Yes, this is the expected performance caused by Blender
> instantiating/uninstantiating objects, even if the adoption of non-mutable
> assets should make things speedier. I think that until it drops to 1 fps,
> it is still acceptable as Blender is used for hi quality renderings, rather
> then for interactive viewing. The problem is when it becomes even slower,
> so also the GUI of Blender starts to act as "freezing" and it becomes not
> so manageable.
>
> best regards
>
> Alessandro
>
>
>
> Thanks,
> James
>
>
> On Tuesday, May 2, 2023 at 9:21:41 PM UTC-4 James Baxter wrote:
>
>> Hi Alessandro,
>>
>> I have been trying this out today, and am very excited! It is going to be
>> really something to take vehicle simulations from Chrono and render them
>> with photo-realism.
>>
>> I did have a few comments about bugs I ran into:
>> 1. When enabling the Chrono importer add-on in blender, I received this
>> error:
>> https://archive.blender.org/wiki/index.php/Extensions:2.6/Py/API_Changes/#Restricted_Context.
>>
>> I was able to work past it by moving the following lines from register() to
>> execute():
>> # this is needed to avoid crashes when pressing F12 for rendering
>> bpy.context.scene.render.use_lock_interface = True
>>
>> bpy.context.scene.ch_meshsetting_index = -1
>> bpy.context.scene.ch_meshsetting.clear()
>>
>> bpy.context.scene.ch_glyph_setting_index = -1
>> bpy.context.scene.ch_glyph_setting.clear()
>>
>> I am very confident that was not the proper fix to the issue, but it
>> prevented me from receiving the error. I had gotten the error with both
>> Blender 3.5.1 and 3.4.1 on Windows. This allowed me to use it on 3.5.1. I
>> did not try hitting F12
>>
>> 2: When running demo_POST_blender1.cpp, it crashed due to line 301 in
>> ChBlender.cpp:
>> std::string abspath_pic_output = filesystem::path(base_path + pic_path +
>> "/" + pic_filename + "_######").make_absolute().str();
>>
>> I am running Chrono on Ubuntu, and it seems the
>> filesystem::path::make_absolute() method requires the file to actually
>> exist; I'm not sure if it is different on Windows. I was able to resolve
>> the problem by creating the directory (anim/photo_######) manually.
>>
>> Thanks again for releasing these updates; I'll let you know if I run into
>> more issues when I try using them with my own vehicle simulations.
>>
>> James
>>
>>
>>
>> On Friday, April 28, 2023 at 7:17:38 PM UTC-4 [email protected] wrote:
>>
>>> Hi James,
>>>
>>> I just sent my latest commits to GIThub containing the documentation (a
>>> sketch of it, I mean) for the Blender add-on.
>>>
>>> If things go as expected, the CI system will trigger a Doxygen rebuild
>>> that will turn into an updated documentation at
>>> https://api.projectchrono.org/development/ , where you should find a
>>> new link to Chrono::Blender, one row below the Chrono::Solidworks link.
>>>
>>> Now it is too late in the night for waiting the CI to finish, and I must
>>> sleep, tomorrow I will see if all was ok or the Doxygen pipeline had
>>> troubles.
>>>
>>> regards
>>>
>>> Alessandro
>>> On 28/04/2023 19:47, James Baxter wrote:
>>>
>>> Hi Alessandro,
>>>
>>> I will plan to begin working on this on Monday, have you been able to
>>> write any documentation? The page I linked earlier still appears to be
>>> empty.
>>>
>>> Thanks,
>>> James
>>>
>>> On Wednesday, April 19, 2023 at 8:18:40 AM UTC-4 James Baxter wrote:
>>>
>>>> Alessandro,
>>>>
>>>> Thank you; I will plan to try out your documentation and code late next
>>>> week and will be happy to provide feedback.
>>>>
>>>> James
>>>>
>>>> On Wednesday, April 19, 2023 at 2:40:08 AM UTC-4 [email protected]
>>>> wrote:
>>>>
>>>>> Hi James
>>>>>
>>>>> You are right, there is a Blender pipeline under development that
>>>>> could do what you need, and I am in charge of it.
>>>>>
>>>>> I was going to write the documentation about how to install and use
>>>>> the Blender add-in but I've been postponing it for two months.
>>>>>
>>>>> I hope to write at least some basic guidelines in the next days.
>>>>>
>>>>> Best regards
>>>>>
>>>>> Alessandro Tasora
>>>>>
>>>>> Il mar 18 apr 2023, 15:31 James Baxter <[email protected]> ha scritto:
>>>>>
>>>>>> Hello, I am looking to render some vehicle simulations I have made,
>>>>>> and I am finding the built in Irrlicht renderer difficult to use and
>>>>>> lacking some features I need (textures don't apply properly to things
>>>>>> that
>>>>>> aren't geometry primitives, exported frames are all black), so I'm
>>>>>> thinking
>>>>>> setting up a pipeline to a different rendering tool makes more sense.
>>>>>>
>>>>>> I see that there is some work done on a pipeline for blender, but I'm
>>>>>> having trouble finding any documentation. This page appears to be empty:
>>>>>> https://api.projectchrono.org/development/blender_visualization.html
>>>>>>
>>>>>> *In general, is there a specific tool that you'd recommend as the
>>>>>> lowest resistance path to being able to render vehicle simulations with
>>>>>> full control over textures, lighting, etc; and is there any code /
>>>>>> documentation you can point me to?*
>>>>>>
>>>>>> I have found the following, but would like to make sure I'm starting
>>>>>> in the right place so I don't reinvent the wheel
>>>>>>
>>>>>> https://github.com/projectchrono/chrono/blob/main/src/demos/postprocess/demo_POST_blender1.cpp
>>>>>>
>>>>>> https://github.com/projectchrono/chrono/tree/main/src/demos/tools/blender_py
>>>>>>
>>>>>> Thanks,
>>>>>> James
>>>>>>
>>>>> --
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "ProjectChrono" group.
>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>> send an email to [email protected].
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/projectchrono/982b90cb-6381-4ed7-ba59-f39d7fbdaf7bn%40googlegroups.com
>>>>>>
>>>>>> <https://groups.google.com/d/msgid/projectchrono/982b90cb-6381-4ed7-ba59-f39d7fbdaf7bn%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>> .
>>>>>>
>>>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "ProjectChrono" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to [email protected].
>>>
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/projectchrono/c4520222-3896-4c37-9df7-96c8657ed7e8n%40googlegroups.com
>>>
>>> <https://groups.google.com/d/msgid/projectchrono/c4520222-3896-4c37-9df7-96c8657ed7e8n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>> --
> You received this message because you are subscribed to the Google Groups
> "ProjectChrono" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
>
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/projectchrono/046cade2-5ecf-498f-9b29-1b596b1c1099n%40googlegroups.com
>
> <https://groups.google.com/d/msgid/projectchrono/046cade2-5ecf-498f-9b29-1b596b1c1099n%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
>
--
You received this message because you are subscribed to the Google Groups
"ProjectChrono" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/projectchrono/67352218-eec0-4932-82a8-b723c335954dn%40googlegroups.com.
# Blender 3.5.1, Commit date: 2023-04-24 18:11, Hash e1ccd9d4a1d3
bpy.ops.mesh.primitive_cylinder_add(vertices=10, radius=0.02, depth=1,
calc_uvs=False, enter_editmode=False, location=(0, 0, 0.5), rotation=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cylinder_add(vertices=10, radius=0.02, depth=1,
calc_uvs=False, enter_editmode=False, location=(0, 0.5, 0), rotation=(1.5708,
0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cylinder_add(vertices=10, radius=0.02, depth=1,
calc_uvs=False, enter_editmode=False, location=(0.5, 0, 0), rotation=(0,
1.5708, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=0.1, calc_uvs=False, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.object.join() # Operator
bpy.ops.object.shade_smooth(use_auto_smooth=True, auto_smooth_angle=1.1) #
Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cylinder_add(vertices=20, radius=0.5, depth=1,
calc_uvs=True, enter_editmode=False, location=(0, 0, 0), rotation=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cone_add(vertices=20, radius1=0.5, radius2=0, depth=1,
calc_uvs=True, enter_editmode=False, location=(0, 0, 0), rotation=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_uv_sphere_add(segments=10, ring_count=10, radius=0.5,
calc_uvs=True, enter_editmode=False, align='WORLD', location=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.object.camera_add(enter_editmode=False, align='VIEW', location=(0, 0,
0), rotation=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_uv_sphere_add(segments=32, ring_count=16, radius=1,
calc_uvs=True, enter_editmode=False, align='WORLD', location=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cylinder_add(vertices=32, radius=1, depth=1,
calc_uvs=True, enter_editmode=False, align='WORLD', location=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.object.shade_smooth(use_auto_smooth=True) # Operator
bpy.ops.mesh.primitive_uv_sphere_add(segments=32, ring_count=16, radius=1,
calc_uvs=True, enter_editmode=False, align='WORLD', location=(0, 0, 0),
scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.object.camera_add(enter_editmode=False, align='VIEW', location=(0, 0,
0), rotation=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.ops.mesh.primitive_cube_add(size=1, calc_uvs=True, enter_editmode=False,
align='WORLD', location=(0, 0, 0), scale=(1, 1, 1)) # Operator
bpy.context.space_data.context = 'OUTPUT' # Property
bpy.context.scene.render.filepath =
"/root/code/chrono-demos/blender/build/blender_output/anim/picture_######" #
Property
bpy.context.space_data.system_bookmarks_active = 1 # Property
Saved "demo.blend" # Info
# backtrace
Exception Record:
ExceptionCode : EXCEPTION_ACCESS_VIOLATION
Exception Address : 0x00007FF7636AA278
Exception Module : blender.exe
Exception Flags : 0x00000000
Exception Parameters : 0x2
Parameters[0] : 0x0000000000000000
Parameters[1] : 0x0000000000000010
Stack trace:
blender.exe :0x00007FF7636AA210
blender::ed::outliner::TreeDisplayViewLayer::add_layer_collection_objects
blender.exe :0x00007FF7636AA2B0
blender::ed::outliner::TreeDisplayViewLayer::add_layer_collections_recursive
blender.exe :0x00007FF7636AA3F0
blender::ed::outliner::TreeDisplayViewLayer::add_view_layer
blender.exe :0x00007FF7636AA600
blender::ed::outliner::TreeDisplayViewLayer::buildTree
blender.exe :0x00007FF76368E320
blender::ed::outliner::outliner_build_tree
blender.exe :0x00007FF76368FDB0 blender::ed::outliner::draw_outliner
blender.exe :0x00007FF763689360
blender::ed::outliner::outliner_main_region_draw
blender.exe :0x00007FF762DE60D0 ED_region_do_draw
blender.exe :0x00007FF7629DEB70 wm_draw_window_offscreen
blender.exe :0x00007FF7629DE9D0 wm_draw_window
blender.exe :0x00007FF7629DE420 wm_draw_update
blender.exe :0x00007FF7629B6970 WM_main
blender.exe :0x00007FF7624A9D80 main
blender.exe :0x00007FF76809D724 __scrt_common_main_seh
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Threads:
Thread : 000072c0
ntdll.dll :0x00007FFD99CD2890 NtWaitForWorkViaWorkerFactory
ntdll.dll :0x00007FFD99C65010 RtlClearThreadWorkOnBehalfTicket
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006ebc
ntdll.dll :0x00007FFD99CD2890 NtWaitForWorkViaWorkerFactory
ntdll.dll :0x00007FFD99C65010 RtlClearThreadWorkOnBehalfTicket
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005d78
ntdll.dll :0x00007FFD99CD2890 NtWaitForWorkViaWorkerFactory
ntdll.dll :0x00007FFD99C65010 RtlClearThreadWorkOnBehalfTicket
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000070b4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00007d4c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00005160
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00006014
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00007110
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00006de4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00006ee8
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 000060a4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00006fa0
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00006ea8
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00001e7c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 00001244
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
IlmThread.dll :0x00007FFD817D46C0 IlmThread_3_1::Semaphore::wait
IlmThread.dll :0x00007FFD817D3100 IlmThread_3_1::ThreadPool::numThreads
IlmThread.dll :0x00007FFD817D100F Symbols not available
Thread : 0000368c
ntdll.dll :0x00007FFD99CD2890 NtWaitForWorkViaWorkerFactory
ntdll.dll :0x00007FFD99C65010 RtlClearThreadWorkOnBehalfTicket
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007eb4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvoglv64.dll :0x00007FFCAB342580 DrvValidateVersion
nvoglv64.dll :0x00007FFCAB0D863C Symbols not available
Thread : 00007834
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
KERNELBASE.dll :0x00007FFD971F4FC0 WaitForMultipleObjects
nvoglv64.dll :0x00007FFCAB377830 DrvPresentBuffers
nvoglv64.dll :0x00007FFCAB377830 DrvPresentBuffers
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007168
ntdll.dll :0x00007FFD99CD2890 NtWaitForWorkViaWorkerFactory
ntdll.dll :0x00007FFD99C65010 RtlClearThreadWorkOnBehalfTicket
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007394
win32u.dll :0x00007FFD9779ACE0 NtUserMsgWaitForMultipleObjectsEx
USER32.dll :0x00007FFD984552E0 MsgWaitForMultipleObjects
nvoglv64.dll :0x00007FFCAB342580 DrvValidateVersion
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000075a0
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
combase.dll :0x00007FFD991D3BE0 CoIncrementMTAUsage
combase.dll :0x00007FFD991D3BE0 CoIncrementMTAUsage
combase.dll :0x00007FFD991D3BE0 CoIncrementMTAUsage
combase.dll :0x00007FFD991D3BE0 CoIncrementMTAUsage
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000425c
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
CRYPT32.dll :0x00007FFD97804710 I_CryptInstallAsn1Module
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00003cfc
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006e9c
ntdll.dll :0x00007FFD99CCED60 ZwRemoveIoCompletion
KERNELBASE.dll :0x00007FFD971B9620 GetQueuedCompletionStatus
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
MessageBus.dll :0x00007FFD78122A30 messageBusRemoveObserver
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006604
ntdll.dll :0x00007FFD99CD2830 ZwWaitForAlertByThreadId
ntdll.dll :0x00007FFD99C99050 RtlSleepConditionVariableSRW
KERNELBASE.dll :0x00007FFD97206310 SleepConditionVariableSRW
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
nvwgf2umx.dll :0x00007FFCA4BC7D30 NVAPI_DirectMethods
nvwgf2umx.dll :0x00007FFCA4BC7D30 NVAPI_DirectMethods
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000073a4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00000f24
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00004bd8
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007d2c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007cd0
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007d98
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005bf0
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000438c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4CC8560 NVENCODEAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007acc
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
KERNELBASE.dll :0x00007FFD971F4FC0 WaitForMultipleObjects
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005b84
win32u.dll :0x00007FFD9779ACE0 NtUserMsgWaitForMultipleObjectsEx
USER32.dll :0x00007FFD984552E0 MsgWaitForMultipleObjects
directmanipulation.dll:0x00007FFD4ABCAD00 DllGetClassObject
directmanipulation.dll:0x00007FFD4ABCAD00 DllGetClassObject
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000041c4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00004dfc
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006b7c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006654
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00000c08
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000373c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000709c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000009cc
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
KERNELBASE.dll :0x00007FFD971F4FC0 WaitForMultipleObjects
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007a34
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007b84
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00004f18
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005e34
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006c4c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000731c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00003224
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000071dc
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000048d0
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000019a4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00002968
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007bcc
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000070ec
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00004970
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
KERNELBASE.dll :0x00007FFD971F4FC0 WaitForMultipleObjects
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000057c4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006084
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000036a4
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00000b3c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007278
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
tbb.dll :0x00007FFD81EFD800
tbb::thread_bound_filter::try_process_item
ucrtbase.dll :0x00007FFD970992C0 recalloc
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 000047b8
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006070
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00003204
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005f90
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00003598
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00006284
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00005b24
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 00007e4c
ntdll.dll :0x00007FFD99CCF790 ZwWaitForMultipleObjects
KERNELBASE.dll :0x00007FFD971F4FE0 WaitForMultipleObjectsEx
KERNELBASE.dll :0x00007FFD971F4FC0 WaitForMultipleObjects
nvwgf2umx.dll :0x00007FFCA4DC22E0 NVDEV_Thunk
nvwgf2umx.dll :0x00007FFCA4E7F480 NVAPI_Thunk
nvwgf2umx.dll :0x00007FFCA61875A0 OpenAdapter12
KERNEL32.DLL :0x00007FFD98D12680 BaseThreadInitThunk
ntdll.dll :0x00007FFD99C8A9D0 RtlUserThreadStart
Thread : 0000708c
OpenColorIO_2_2.dll :0x00007FFCD37A11C0 OpenColorIO_v2_2::GradingTone::validate
OpenColorIO_2_2.dll :0x00007FFCD366ED10
OpenColorIO_v2_2::CPUProcessor::applyRGBA
tbbmalloc.dll :0x00007FFD7A927614 Symbols not available
Thread : 0000628c
ntdll.dll :0x00007FFD99CCECC0 NtWaitForSingleObject
KERNELBASE.dll :0x00007FFD971C9B50 WaitForSingleObjectEx
nvoglv64.dll :0x00007FFCAB342580 DrvValidateVersion
nvoglv64.dll :0x00007FFCAB0D863C Symbols not available
Loaded Modules :
0x00007FF762380000 3.5.1.0 blender.exe C:\Program Files\Blender
Foundation\Blender 3.5\blender.pdb [unmatched]
0x00007FFD99C30000 10.0.22621.1485 ntdll.dll
0x00007FFD85CF0000 23.3.8047.0 aswhook.dll
0x00007FFD98D00000 10.0.22621.1485 KERNEL32.DLL
0x00007FFD97190000 10.0.22621.1555 KERNELBASE.dll
0x00007FFD98430000 10.0.22621.1485 USER32.dll
0x00007FFD97790000 10.0.22621.1555 win32u.dll
0x00007FFD81EF0000 tbb.dll
0x00007FFD7A920000 tbbmalloc.dll
0x00007FFD987A0000 10.0.22621.608 GDI32.dll
0x00007FFD97670000 10.0.22621.1344 gdi32full.dll
0x00007FFD979A0000 10.0.22621.608 msvcp_win.dll
0x00007FFD97070000 10.0.22621.608 ucrtbase.dll
0x00007FFD97A60000 10.0.22621.1485 SHELL32.dll
0x00007FFD990D0000 10.0.22621.1 WS2_32.dll
0x00007FFD98830000 10.0.22621.1555 RPCRT4.dll
0x00007FFCD3A10000 6.1.0.0 sycl6.dll
0x00007FFD98380000 10.0.22621.1485 ADVAPI32.dll
0x00007FFD98E80000 7.0.22621.608 msvcrt.dll
0x00007FFD994E0000 10.0.22621.1555 sechost.dll
0x00007FFCD3610000 OpenColorIO_2_2.dll
0x00007FFD98320000 10.0.22621.608 SHLWAPI.dll
0x00007FFD98950000 10.0.22621.608 ole32.dll
0x00007FFCC9350000 cycles_kernel_oneapi_aot.dll
0x00007FFD99150000 10.0.22621.1485 combase.dll
0x00007FFD79AD0000 14.29.30139.0 MSVCP140.dll
0x00007FFD99670000 10.0.22621.900 shcore.dll
0x00007FFD81ED0000 14.29.30139.0 VCRUNTIME140.dll
0x00007FFCD2D30000 OpenImageIO.dll
0x00007FFD98AF0000 10.0.22621.1344 IMM32.dll
0x00007FFD83310000 14.29.30139.0 VCRUNTIME140_1.dll
0x00007FFD32040000 OpenImageIO_Util.dll
0x00007FFD79A90000 boost_python310-vc142-mt-x64-1_80.dll
0x00007FFCC7A00000 usd_ms.dll
0x00007FFD2DE40000 epoxy-0.dll
0x00007FFCC3620000 10.0.0.0 openvdb.dll
0x00007FFD6EDC0000 Iex.dll
0x00007FFD6E400000 Imath.dll
0x00007FFCFEE00000 OpenEXR.dll
0x00007FFD79A60000 59.7.100.0 avdevice-59.dll
0x00007FFD99590000 10.0.22621.608 OLEAUT32.dll
0x00007FFCD1840000 59.27.100.0 avformat-59.dll
0x00007FFCADC40000 59.37.100.0 avcodec-59.dll
0x00007FFD08B50000 57.28.100.0 avutil-57.dll
0x0000000067380000 1.1.0.0 libsndfile-1.dll
0x00007FFD2D850000 2.0.20.0 SDL2.dll
0x00007FFD6DEC0000 6.7.100.0 swscale-6.dll
0x00007FFD05EB0000 1.21.1.0 OpenAL32.dll
0x000000006ACC0000 libgmp-10.dll
0x00007FFD820C0000 libgmpxx.dll
0x00007FFD99770000 10.0.22621.1344 SETUPAPI.dll
0x00007FFD7A5B0000 boost_thread-vc142-mt-x64-1_80.dll
0x00007FFD50B10000 boost_locale-vc142-mt-x64-1_80.dll
0x00007FFCD0F40000 3.10.9150.1013 python310.dll
0x00007FFD81EC0000 tbbmalloc_proxy.dll
0x00007FFD96D60000 10.0.22621.1344 CFGMGR32.dll
0x00007FFD73120000 10.0.22621.1344 AVIFIL32.dll
0x00007FFD8BA00000 10.0.22621.1 VERSION.dll
0x00007FFD78790000 6.10.22621.608 COMCTL32.dll
0x00007FFD948D0000 10.0.22621.1 dbghelp.dll
0x00007FFD944C0000 10.0.22621.608 dwmapi.dll
0x0000000070680000 libfftw3-3.dll
0x00007FFD33880000 OpenEXRCore.dll
0x00007FFD7E5A0000 10.0.22621.755 dbgeng.dll
0x00007FFD5F7D0000 10.0.22621.608 OPENGL32.dll
0x00007FFD817D0000 IlmThread.dll
0x00007FFD79040000 10.0.22621.1 Secur32.dll
0x00007FFD72050000 4.7.100.0 swresample-4.dll
0x00007FFD96A20000 10.0.22621.1344 bcrypt.dll
0x00007FFD79A00000 10.0.22621.1344 AVICAP32.dll
0x00007FFD8EE20000 10.0.22621.608 WINMM.dll
0x00007FFD83F70000 10.0.22621.1 MSACM32.dll
0x00007FFD6ED90000 10.0.22621.1344 MSVFW32.dll
0x00007FFD7E4B0000 10.0.22621.755 dbgmodel.dll
0x00007FFD8EFF0000 10.0.22621.608 XmlLite.dll
0x00007FFD5F760000 10.0.22621.608 GLU32.dll
0x00007FFD96400000 10.0.22621.1485 SSPICLI.DLL
0x00007FFD941A0000 10.0.22621.608 dxcore.dll
0x00007FFD96180000 10.0.22621.1 kernel.appcore.dll
0x00007FFD95040000 10.0.22621.1485 windows.storage.dll
0x00007FFD94F00000 10.0.22621.1485 wintypes.dll
0x00007FFD90F70000 10.0.22621.608 uxtheme.dll
0x00007FFD975F0000 10.0.22621.1344 bcryptPrimitives.dll
0x00007FFD96FA0000 10.0.22621.1 profapi.dll
0x00007FFD98DD0000 2001.12.10941.16384 clbcatq.dll
0x00007FFD83780000 10.0.22621.608 MMDevApi.dll
0x00007FFD96D30000 10.0.22621.1344 DEVOBJ.dll
0x00007FFD7D6C0000 10.0.22621.1485 AUDIOSES.DLL
0x00007FFD948B0000 10.0.22621.1 resourcepolicyclient.dll
0x00007FFD95F50000 10.0.22621.1344 powrprof.dll
0x00007FFD95F30000 10.0.22621.1 UMPDC.dll
0x00007FFD98BD0000 10.0.22621.1344 MSCTF.dll
0x00007FFD8E2F0000 10.0.22621.1485 directxdatabasehelper.dll
0x00007FFD8B8A0000 10.0.22621.1485 AppXDeploymentClient.dll
0x00007FFCA9FE0000 31.0.15.3168 nvoglv64.dll
0x00007FFD90F30000 10.0.22621.1 WTSAPI32.dll
0x00007FFD96D10000 10.0.22621.819 msasn1.dll
0x00007FFD86120000 10.0.22621.1 cryptnet.dll
0x00007FFD977C0000 10.0.22621.674 CRYPT32.dll
0x00007FFD85F50000 10.0.22621.1 drvstore.dll
0x00007FFD96930000 10.0.22621.1485 wldp.dll
0x00007FFD968A0000 10.0.22621.1 cryptbase.dll
0x00007FFD97930000 10.0.22621.1485 WINTRUST.dll
0x00007FFD961A0000 10.0.22621.1 ntmarta.dll
0x00007FFD95B50000 10.0.22621.608 WINSTA.dll
0x00007FFD942E0000 10.0.22621.1485 dxgi.dll
0x00007FFD47DA0000 10.0.22621.608 dataexchange.dll
0x00007FFD902F0000 10.0.22621.1344 d3d11.dll
0x00007FFD89ED0000 10.0.22621.755 twinapi.appcore.dll
0x00007FFD31F80000 31.0.15.3168 nvldumdx.dll
0x00007FFD97A40000 10.0.22621.1 imagehlp.dll
0x00007FFD96880000 10.0.22621.1 CRYPTSP.dll
0x00007FFD960F0000 10.0.22621.1 rsaenh.dll
0x00007FFCA4B50000 31.0.15.3168 nvwgf2umx.dll
0x00007FFD77FE0000 1.22.2758.1620 MessageBus.dll
0x00007FFD95BD0000 10.0.22621.1 IPHLPAPI.DLL
0x00007FFD826B0000 31.0.15.3168 nvapi64.dll
0x00007FFD98CF0000 10.0.22621.1 NSI.dll
0x00007FFD8BA10000 10.0.22621.1344 dhcpcsvc.DLL
0x00007FFD8A5A0000 27.20.100.9664 igd10iumd64.dll
0x00007FFD969F0000 10.0.22621.1485 ncrypt.dll
0x00007FFD90E90000 10.0.22621.1485 apphelp.dll
0x00007FFD969B0000 10.0.22621.1 NTASN1.dll
0x00007FFD894B0000 27.20.100.9664 igdgmm64.dll
0x00007FFD86720000 27.20.100.9664 igc64.dll
0x00007FFD90550000 10.0.22621.1344 dcomp.dll
0x00007FFD7DAC0000 10.0.22621.1344 textinputframework.dll
0x00007FFD90BB0000 10.0.22621.608 CoreMessaging.dll
0x00007FFD8D490000 10.0.22621.608 CoreUIComponents.dll
0x00007FFD47B00000 10.0.22621.1344 explorerframe.dll
0x00007FFD4ABA0000 10.0.22621.608 directmanipulation.dll
0x000001BFEA690000 3.10.9150.1013 python3.DLL
0x00007FFCF80C0000 _multiarray_umath.cp310-win_amd64.pyd
0x00007FFD797B0000 _multiarray_tests.cp310-win_amd64.pyd
0x00007FFD73200000 3.10.9150.1013 _socket.pyd
0x00007FFD7C6B0000 3.10.9150.1013 select.pyd
0x00007FFD57570000 3.10.9150.1013 _ctypes.pyd
0x00007FFD7BC00000 libffi-7.dll
0x00007FFD05460000 _umath_linalg.cp310-win_amd64.pyd
0x00007FFD6ED70000 _pocketfft_internal.cp310-win_amd64.pyd
0x00007FFD2E840000 mtrand.cp310-win_amd64.pyd
0x00007FFD56EA0000 bit_generator.cp310-win_amd64.pyd
0x00007FFD50C10000 _common.cp310-win_amd64.pyd
0x00007FFD7B7E0000 3.10.9150.1013 _hashlib.pyd
0x00007FFCD0BB0000 1.1.1.17 libcrypto-1_1.dll
0x00007FFD50AD0000 _bounded_integers.cp310-win_amd64.pyd
0x00007FFD56FC0000 _mt19937.cp310-win_amd64.pyd
0x00007FFD50BF0000 _philox.cp310-win_amd64.pyd
0x00007FFD50A50000 _pcg64.cp310-win_amd64.pyd
0x00007FFD7B070000 _sfc64.cp310-win_amd64.pyd
0x00007FFD2DD90000 _generator.cp310-win_amd64.pyd
0x00007FFD941E0000 7.0.22621.608 PROPSYS.dll
0x00007FFD56480000 10.0.22621.1 LINKINFO.dll
# Python backtrace