A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
Hello @Sid Kraft ,
Thanks for your question.
The error unresolved symbol_imp_glTranslatef means your program knows the command exists, but cannot find the code to run it. Because you removed the linker library references, Visual Studio cannot find the standard Windows OpenGL library.
You can refer to these following steps:
- Right-click your Project in Visual Studio and select
Properties. - Go to
Linker > Input. - In
Additional Dependencies, addopengl32.lib. - Click OK and rebuild your project.
If any part of my explanation helped address your question, I would greatly appreciate it if you could follow the instructions here. This can also help other community members facing similar scenarios.