| 393 | } |
| 394 | |
| 395 | void AppFrame::SetFPS(fuInt v)LNOEXCEPT |
| 396 | { |
| 397 | if (m_iStatus == AppStatus::Initializing) |
| 398 | m_OptionFPSLimit = v; |
| 399 | else if (m_iStatus == AppStatus::Running) |
| 400 | LWARNING("试图在运行时更改FPS限制"); |
| 401 | } |
| 402 | |
| 403 | void AppFrame::SetVsync(bool v)LNOEXCEPT |
| 404 | { |
nothing calls this directly
no outgoing calls
no test coverage detected