Examples: Renamed applications to emphasis on use of GLFW as a platform framework + minor local tweaks

This commit is contained in:
omar
2018-03-20 15:57:54 +01:00
parent 70d500502a
commit 74b7dce394
5 changed files with 9 additions and 9 deletions

View File

@ -26,7 +26,7 @@ int main(int, char**)
#if __APPLE__
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
#endif
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui OpenGL3 example", NULL, NULL);
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui GLFW+OpenGL3 example", NULL, NULL);
glfwMakeContextCurrent(window);
glfwSwapInterval(1); // Enable vsync
gl3wInit();