You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change glviewport from first tutorials to
int width, height;
glfwGetFramebufferSize(window, &width, &height);
glViewport(0, 0, width, height);
It will prevent some issues with scaling
The text was updated successfully, but these errors were encountered:
Change glviewport from first tutorials to
int width, height;
glfwGetFramebufferSize(window, &width, &height);
glViewport(0, 0, width, height);
It will prevent some issues with scaling
The text was updated successfully, but these errors were encountered: