Hello, I am trying to run a simple program that displays the current time of the GPU using this and I am using an nvidia graphics card. My os is Linux
GLint64 time;
glGetInteger64v(GL_TIMESTAMP, &time);
std::cout << time << std::endl;
The output of this is displaying incorrect timestamp values, what are the possible reasons? Pretty new to opengl