Search code examples
c++openglsfml

Do I have to use GLAD loader in SFML app?


I'm using openGL 3.3 to render a 3D scene in an SFML window. Do I still have to use GLAD in order to load openGL library or is loader already implemented into the sf::RenderWindow class?


Solution

  • Yes, you do need a loader like GLAD to find the opengl functions.