We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I solved this by noticing that console shows
GLUT Warning: glutInit being called a second time
Which was surprising since my program really called it once.
I got clue from this discussion, where someone suggests that glutInit must be called before any other call to OpenGL.
I solved this by invoking glutInit at the first line of my program and commenting where it was called initially.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I solved this by noticing that console shows
GLUT Warning: glutInit being called a second time
Which was surprising since my program really called it once.
I got clue from this discussion, where someone suggests that glutInit must be called before any other call to OpenGL.
I solved this by invoking glutInit at the first line of my program and commenting where it was called initially.
The text was updated successfully, but these errors were encountered: