nanogui icon indicating copy to clipboard operation
nanogui copied to clipboard

On the issue of window size.

Open GraphicsEnthusiast opened this issue 2 years ago • 1 comments

How should I set the actual window size to be the same as the window size created by glfw? image I want the image in the bottom left corner to fill the screen.

GraphicsEnthusiast avatar May 18 '23 22:05 GraphicsEnthusiast

https://docs.gl/gl4/glViewport does this.

glViewport(0, 0, GLFWwindowWidth, GLFWwindowHeight);

Klivess avatar Aug 15 '23 23:08 Klivess