| 401 | } |
| 402 | |
| 403 | void AppFrame::SetVsync(bool v)LNOEXCEPT |
| 404 | { |
| 405 | if (m_iStatus == AppStatus::Initializing) |
| 406 | m_OptionVsync = v; |
| 407 | else if (m_iStatus == AppStatus::Running) |
| 408 | LWARNING("试图在运行时更改垂直同步模式"); |
| 409 | } |
| 410 | |
| 411 | void AppFrame::SetResolution(fuInt width, fuInt height)LNOEXCEPT |
| 412 | { |
nothing calls this directly
no outgoing calls
no test coverage detected