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
To allow concurrent effect data loading (with Effect.Load) and rendering (with Effect.Render) the demo must be able to delegate work to a background task. Effect.Render must not busy-wait but use TaskWait(VBlankEvent) to leave some time for concurrent execution of Effect.Load. Use cases follow:
To allow concurrent effect data loading (with
Effect.Load
) and rendering (withEffect.Render
) the demo must be able to delegate work to a background task.Effect.Render
must not busy-wait but useTaskWait(VBlankEvent)
to leave some time for concurrent execution ofEffect.Load
. Use cases follow:DONE
. This should suspend calling task if the job isRUNNING
.READY
jobs and wait forRUNNING
job to finish.The text was updated successfully, but these errors were encountered: