| 985 | } |
| 986 | |
| 987 | void TutorialApplication::reshapeFunc(GLFWwindow* window, int, int) |
| 988 | { |
| 989 | int width,height; |
| 990 | glfwGetFramebufferSize(window, &width, &height); |
| 991 | resize(width,height); |
| 992 | glViewport(0, 0, width, height); |
| 993 | this->width = width; this->height = height; |
| 994 | } |
| 995 | |
| 996 | void TutorialApplication::renderInteractive() |
| 997 | { |