当前位置:  开发笔记 > 编程语言 > 正文

简单程序的高CPU使用率

如何解决《简单程序的高CPU使用率》经验,为你挑选了1个好方法。



1> LogicStuff..:

因为你没有window.display()在循环中调用,所以注意停止线程一段适当的时间,用sf::RenderWindow::setVerticalSyncEnabled或设置sf::RenderWindow::setMaxFramerateLimit.

试试这个:

while (window.isOpen())
{
    processEvents(window);

    // this makes the thread sleep
    // (for ~16.7ms minus the time already spent since
    // the previous window.display() if synced with 60FPS)
    window.display();
}

来自SFML文档:

如果设置了限制,则每次调用后窗口将使用一小段延迟,display()以确保当前帧持续足够长的时间以匹配帧速率限制.

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有