This is test for OpenGL application. I try to made it as simple as I can. This test contain the sample test you can modify. I have not add the camera rotation, if you like to add something it would be good.
This application is free to use for commercial or non-comercial. I will try to improve it as advance as it should be.
[attachment deleted by admin]
Here is Hitchickr framework. I modify it and limit the frame to 20. On my 2.4 Ghz the CPU usage of wach example is 1%.
[attachment deleted by admin]
It's very jerky on my computer.
Maybe because the time between frames are not the same anymore.
Better wait for vertical-retrace instead of using the SetTimer API for smooth animations and
calculate the time between frames for smooth updating.
If you want to drop the framerate you can skip a vertical-retrace and you get 30 frames per second. ( if it was 60 FPS)
Quote from: Siekmanski on October 30, 2005, 09:13:05 AM
It's very jerky on my computer.
Maybe because the time between frames are not the same anymore.
Better wait for vertical-retrace instead of using the SetTimer API for smooth animations and
calculate the time between frames for smooth updating.
If you want to drop the framerate you can skip a vertical-retrace and you get 30 frames per second. ( if it was 60 FPS)
Yeah, I try to implement the wait vertical retrace but Im not done it yet since I dont know how to implement it.
IF my monitor 20 hz what I should wait? Each the frame counter reach 20 I stop the frame?
let me know if u want help with the camera rotation.
hello farabi
study Hitchickr framework it's all in there. (hint "vsync")
invoke pwglSwapIntervalEXT, Status
greetings siekmanski
Quote from: ninjarider on November 07, 2005, 06:23:58 PM
let me know if u want help with the camera rotation.
Are you asking me to help you? But I am the one who need that help . :green
Quote from: Siekmanski on November 07, 2005, 06:49:33 PM
hello farabi
study Hitchickr framework it's all in there. (hint "vsync")
invoke pwglSwapIntervalEXT, Status
greetings siekmanski
So pwglSwapIntervalEXT function will made the swap buffer wait the vertical-retrace ? Im confused.
I forgot to say. Im almost ashamed on the gamedev forum after watching some few demo. I think Im too underestimate them. BTW, I think maybe it is because of their devtool. Thats why they can easly understand and improving their OpenGL application.
Quote
So pwglSwapIntervalEXT function will made the swap buffer wait the vertical-retrace ?
Yes, it'll turn it ON or OFF depending on the passed argument.
The user can override it in the gfx driver control panel, so don't rely upon this.
It's only used to remove any tearing that may occur during frames updates.