Lines Matching defs:title
181 const char* title,
190 assert(title != NULL);
211 wndconfig.title = title;
245 window->title = _glfw_strdup(title);
498 _glfw_free(window->title);
529 return window->title;
532 GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title)
534 assert(title != NULL);
541 char* prev = window->title;
542 window->title = _glfw_strdup(title);
544 _glfw.platform.setWindowTitle(window, title);