You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Some sample applications (e.g. timeline_semaphore_simple) crash on exit. It looks like part of what is going on is that the main loop has no exit condition, but changing this to match other samples is insufficient (e.g. I tried to change the while (true) to while (!app.should_exit() && !data->WindowClosing()) in "application_sandbox/timeline_semaphore_simple/main.cpp", but this application still crashes, so more investigation is needed.
Just based on the presence of a main loop that never terminates, I think this may impact the following samples (I have not verified that all of these actually crash):
external_buffer
external_image
foreign_buffer
present_region
synchronization2_timeline_semaphore_simple
timeline_sempahore_cross_queue
timeline_semaphore_host_signal_after_submit
timeline_semaphore_simple
The text was updated successfully, but these errors were encountered:
Some sample applications (e.g. timeline_semaphore_simple) crash on exit. It looks like part of what is going on is that the main loop has no exit condition, but changing this to match other samples is insufficient (e.g. I tried to change the
while (true)
towhile (!app.should_exit() && !data->WindowClosing())
in "application_sandbox/timeline_semaphore_simple/main.cpp", but this application still crashes, so more investigation is needed.Just based on the presence of a main loop that never terminates, I think this may impact the following samples (I have not verified that all of these actually crash):
The text was updated successfully, but these errors were encountered: