| 247 | } |
| 248 | |
| 249 | void App::ToggleFullScreen(bool fullScreen) |
| 250 | { |
| 251 | if(fullScreen != swapChain.FullScreen()) |
| 252 | { |
| 253 | DestroyPSOs_Internal(); |
| 254 | |
| 255 | BeforeReset_Internal(); |
| 256 | |
| 257 | swapChain.SetFullScreen(fullScreen); |
| 258 | swapChain.Reset(); |
| 259 | |
| 260 | AfterReset_Internal(); |
| 261 | |
| 262 | CreatePSOs_Internal(); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | void App::DrawLog() |
| 267 | { |
nothing calls this directly
no test coverage detected