UltraMarine
Newbie
Hey it's me back again.
I need hardware testers again for this 3d demo.
MEGAUPLOAD - The leading online storage and file delivery service Project 1
MEGAUPLOAD - The leading online storage and file delivery service project 2
these 2 similar project with only one difference in the frame counting code.
long cNow = SystemClock.elapsedRealtime();
Interval = cNow - frameTime;
Frame++;
if( Interval > 1000)
{
Fps = Frame;
frameTime = cNow;
Frame = 0;
}
In project 1. I used the exactly like how it is from the book,
and that is
that it's the interval for 5 seconds...if( Interval > 5000)
so every 5 seconds your application will update the FPS and stuff.
in the second one
the FPS will be refreshed for every 1 seconds.
test for me if the camera have a smooth movement /rotations.
and see how much FPS I can reach.
notes:
-Don't forget to uninstall the proj 1 before you install proj 2
-These are for Android 2.1 only.