The MASM Forum Archive 2004 to 2012

Project Support Forums => OpenGL Forum => Topic started by: Farabi on August 30, 2005, 03:51:23 AM

Title: Template Test.
Post by: Farabi on August 30, 2005, 03:51:23 AM
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]
Title: Re: Template Test.
Post by: Farabi on October 30, 2005, 04:36:00 AM
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]
Title: Re: Template Test.
Post by: 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)
Title: Re: Template Test.
Post by: Farabi on November 07, 2005, 12:41:35 PM
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?
Title: Re: Template Test.
Post by: ninjarider on November 07, 2005, 06:23:58 PM
let me know if u want help with the camera rotation.
Title: Re: Template Test.
Post by: 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
Title: Re: Template Test.
Post by: Farabi on November 09, 2005, 01:12:20 PM
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
Title: Re: Template Test.
Post by: Farabi on November 09, 2005, 01:14:48 PM
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.
Title: Re: Template Test.
Post by: Farabi on November 09, 2005, 01:18:18 PM
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.
Title: Re: Template Test.
Post by: hitchhikr on November 10, 2005, 04:04:44 PM
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.