我试图让我的 FPS 显示在窗口标题中,但我的程序没有它。
我的 FPS 代码
void showFPS()
{
// Measure speed
double currentTime = glfwGetTime();
nbFrames++;
if ( currentTime - lastTime >= 1.0 ){ // If last cout was more than 1 sec ago
cout << 1000.0/double(nbFrames) << endl;
nbFrames = 0;
lastTime += 1.0;
}
}
我也希望它在此处的版本之后
window = glfwCreateWindow(640, 480, GAME_NAME " " VERSION " ", NULL, NULL);
但我不能只调用 void 我必须将其转换为 char 吗?或者是什么 ?