| 409 | } |
| 410 | |
| 411 | void AppFrame::SetResolution(fuInt width, fuInt height)LNOEXCEPT |
| 412 | { |
| 413 | if (m_iStatus == AppStatus::Initializing) |
| 414 | m_OptionResolution.Set((float)width, (float)height); |
| 415 | else if (m_iStatus == AppStatus::Running) |
| 416 | LWARNING("试图在运行时更改分辨率"); |
| 417 | } |
| 418 | |
| 419 | void AppFrame::SetSplash(bool v)LNOEXCEPT |
| 420 | { |
nothing calls this directly
no outgoing calls
no test coverage detected