| 62 | static FpsStat timer_fps; |
| 63 | |
| 64 | std::shared_ptr<RdApplication> RdApplication::Make(const AppParams& args) { |
| 65 | // By OS |
| 66 | // Windows |
| 67 | return std::make_shared<WinApplication>(args); |
| 68 | // Linux |
| 69 | } |
| 70 | |
| 71 | RdApplication::RdApplication(const AppParams& args) { |
| 72 | auto settings = RdSettings::Instance(); |
nothing calls this directly
no outgoing calls
no test coverage detected