I want to print extensions and version info available in my GPU.
I used a custom function to check the extensions taken from NEHE and even taken from the official website, and doesn´t work either.
I can´t get it working. What is happening here?.
#include <windows.h>
#include <GL/freeglut.h>
#include <iostream>
int main(int argc, char **argv)
{
glutInit(&argc, argv);
cout << "test" << GL_VERSION; // WORKS . SHOWS A NUMBER
cout << glGetString(GL_VERSION); // DOESN´T WORK. Shows nothing, but continues
if (glutExtensionSupported("GL_NV_bindless_texture"))
cout << "YES"; // NEVER GETS PRINTED, DOESN´T MATTER WHICH EXTENSION I CHOOSE
char* extensiones = (char*)glGetString(GL_EXTENSIONS);
cout << extensiones; // DOESN´T WORK NEITHER
}