Search found 3 matches
- Sun Sep 11, 2011 9:33 pm
- Forum: Bug reports
- Topic: Some demo apps run slowly on ubuntu 11.04
- Replies: 6
- Views: 737
Re: Some demo apps run slowly on ubuntu 11.04
Oh I get why the problem happens now, but these two ways are still not the way to limit framerate because on lower end computers it may just make the app run too slow. You should instead use delta times between frames and pause for some time to make the time between frames the same(eg 16.666666ms f...
- Sun Sep 11, 2011 10:49 am
- Forum: Bug reports
- Topic: Some demo apps run slowly on ubuntu 11.04
- Replies: 6
- Views: 737
Re: Some demo apps run slowly on ubuntu 11.04
just put device->sleep(1); in the main run loop Thank you for the information. I put it in the main loop, and the program runs smoothly. I experimented with putting a for loop instead of device->sleep(1). while (device->run()) { if (device->isWindowActive()) { ... for (volatile ...
- Sat Sep 10, 2011 1:28 pm
- Forum: Bug reports
- Topic: Some demo apps run slowly on ubuntu 11.04
- Replies: 6
- Views: 737
Some demo apps run slowly on ubuntu 11.04
Hello When I run some demo programs, these run slowly. A window will be refreshed sometimes. For example, when I run 06.2DGraphics, 2 imps flutter their wings about 1 time per sec (= 1FPS). But when I run 01.HelloWorld and Demo, these run smoothly. I think 2D programs are slow and 3D are fast. This ...