SFML community forums

Help => General => Topic started by: rogeriodec on May 23, 2018, 01:32:24 am

Title: [SOLVED] High CPU usage with almost nothing
Post by: rogeriodec on May 23, 2018, 01:32:24 am
Why a single code like this can consume about 15% of CPU usage in a Intel I7 processor?

Code: [Select]
#include <SFML/Graphics.hpp>
using namespace sf;
int main()
{
RenderWindow window(VideoMode(800, 600), "Janela", Style::Close);
window.setFramerateLimit(120);
while (window.isOpen())
{
for (Event event; window.pollEvent(event);) {
if (event.type == Event::Closed)
window.close();
}

}
return EXIT_SUCCESS;
}
Title: Re: High CPU usage with almost nothing
Post by: Laurent on May 23, 2018, 06:38:13 am
setFramerateLimit has no effect if you never call window.display().
Title: Re: [SOLVED] High CPU usage with almost nothing
Post by: rogeriodec on May 23, 2018, 03:57:48 pm
Perfect.
Thank you very much!