SFML community forums
Help => Graphics => Topic started by: kekasaurus on August 29, 2017, 02:02:40 pm
-
Hi!
I downloaded SFML2 and created a project template (that links and includes every file needed), however, I came across the issue of "identifier 'gluPerspective' is undefined"
I am using VS15
Any help?
PS: Yes I tried linking to glu32 but it didn't seem to work or help at all.
-
Did you include the right header?
-
Yes, I included OpenGL.hpp and Graphics.hpp
-
gluPerspective is a function of the GLU library, it is not part of the core OpenGL library nor SFML. You must include and link the relevant stuff if you want to use it (and don't try random things, Google knows how to use GLU).
You can replace it with glFrustum and a bit of maths, if you want to rely strictly on OpenGL functions -- see how it is done in SFML examples (https://github.com/SFML/SFML/blob/master/examples/window/Window.cpp#L41).
But all this stuff (GLU, glFrustum) is deprecated and if you want to learn modern OpenGL, then you'd better not use them. You can either use a dedicated matrix library, like GLM, or write the full maths yourself.