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
Would be cool if there was a const-version of animation::animate because then one instance of animate could be used from different threads in parallel. The current version assigns to mGlobalTransform and therefore, cannot be const. An alternative would be to duplcate instances of aimation and use the duplicated instances from different threads.
Definition of done:
Either a version of animation::animate that is const has been added, ...
... or it has been made sure that animation can be properly copied for the purpose of parallel animations.
Would be cool if there was a
const
-version ofanimation::animate
because then one instance ofanimate
could be used from different threads in parallel. The current version assigns tomGlobalTransform
and therefore, cannot beconst
. An alternative would be to duplcate instances ofaimation
and use the duplicated instances from different threads.Definition of done:
animation::animate
that isconst
has been added, ...animation
can be properly copied for the purpose of parallel animations.The text was updated successfully, but these errors were encountered: