| 174 | } |
| 175 | |
| 176 | void App::Update_Internal() |
| 177 | { |
| 178 | appTimer.Update(); |
| 179 | |
| 180 | const uint32 displayWidth = swapChain.Width(); |
| 181 | const uint32 displayHeight = swapChain.Height(); |
| 182 | ImGuiHelper::BeginFrame(displayWidth, displayHeight, appTimer.DeltaSecondsF()); |
| 183 | |
| 184 | CalculateFPS(); |
| 185 | |
| 186 | AppSettings::Update(displayWidth, displayHeight, appViewMatrix); |
| 187 | |
| 188 | Update(appTimer); |
| 189 | } |
| 190 | |
| 191 | void App::Render_Internal() |
| 192 | { |
nothing calls this directly
no test coverage detected