MCPcopy Create free account
hub / github.com/NVIDIA-RTX/Donut / SetWindowTitle

Method SetWindowTitle

src/app/DeviceManager.cpp:1085–1094  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1083}
1084
1085void 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
1096void DeviceManager::SetInformativeWindowTitle(const char* applicationName, bool includeFramerate, const char* extraInfo)
1097{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected