MayaFlux 0.1.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 115 of file GlfwWindow.cpp.

116{
117 if (m_window) {
118 glfwSetWindowTitle(m_window, title.c_str());
119 m_create_info.title = title;
120 }
121}
WindowCreateInfo m_create_info
std::string title
Window title/identifier.

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