I am learning how to build and run OpenGL with C. And i am using Glad as a function loader. Keeping it simple, i am compiling and linking manually. Everything works.
(Using Visual Studio Code as an IDE)
It is helpful to show what a function does. And this normally shows up when hovering over it. (Documentation)
But when i hover over the "glClear(GL_COLOR_BUFFER_BIT)" as an example it does not show the OpenGL definition of the function.
Instead it shows:
#define glClear glad_glClear
Expands to: glad_glClear
Is there a way to show the OpenGL documentation instead?
My only dependencies are Glad and GLFW.