MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ set_title()

void MayaFlux::Core::GlfwWindow::set_title ( const std::string &  title)
overridevirtual

Set window title, size, or position.

Parameters
titleNew window title

Implements MayaFlux::Core::Window.

Definition at line 120 of file GlfwWindow.cpp.

121{
122 if (m_window) {
123 glfwSetWindowTitle(m_window, title.c_str());
124 m_create_info.title = title;
125 }
126}
WindowCreateInfo m_create_info
std::string title
Window title/identifier.

References m_create_info, m_window, and MayaFlux::Core::WindowCreateInfo::title.