| 184 | } |
| 185 | |
| 186 | static void PerformStep(void* _ctx) |
| 187 | { |
| 188 | StepContext* ctx = (StepContext*)_ctx; |
| 189 | HEngine engine = (HEngine)ctx->m_Engine; |
| 190 | |
| 191 | // check if we want to reboot |
| 192 | PreStepEmscripten(_ctx); |
| 193 | |
| 194 | ctx->m_Params->m_EngineUpdate(engine); |
| 195 | } |
| 196 | #endif // emscripten |
| 197 | |
| 198 | } // namespace |
nothing calls this directly
no test coverage detected