| 1083 | } |
| 1084 | |
| 1085 | void DeviceManager::SetWindowTitle(const char* title) |
| 1086 | { |
| 1087 | assert(title); |
| 1088 | if (m_WindowTitle == title) |
| 1089 | return; |
| 1090 | |
| 1091 | glfwSetWindowTitle(m_Window, title); |
| 1092 | |
| 1093 | m_WindowTitle = title; |
| 1094 | } |
| 1095 | |
| 1096 | void DeviceManager::SetInformativeWindowTitle(const char* applicationName, bool includeFramerate, const char* extraInfo) |
| 1097 | { |
nothing calls this directly
no outgoing calls
no test coverage detected