| 704 | } |
| 705 | |
| 706 | void NvFlexExtTickContainer(NvFlexExtContainer* c, float dt, int substeps, bool enableTiming) |
| 707 | { |
| 708 | // update the device |
| 709 | NvFlexExtPushToDevice(c); |
| 710 | |
| 711 | // update solver |
| 712 | NvFlexUpdateSolver(c->mSolver, dt, substeps, enableTiming); |
| 713 | |
| 714 | // update host |
| 715 | NvFlexExtPullFromDevice(c); |
| 716 | } |
| 717 | |
| 718 | void NvFlexExtNotifyAssetChanged(NvFlexExtContainer* c, const NvFlexExtAsset* asset) |
| 719 | { |
nothing calls this directly
no test coverage detected