Removed Display.sync2 and Display.sync3

This commit is contained in:
Elias Naur 2008-05-30 06:53:33 +00:00
parent 4a0b48a306
commit f18b5baa09
1 changed files with 4 additions and 4 deletions

View File

@ -396,7 +396,7 @@ public final class Display {
* to prevent just missing the frame time if vsync is set. * to prevent just missing the frame time if vsync is set.
* @param fps The desired frame rate, in frames per second * @param fps The desired frame rate, in frames per second
*/ */
public static void sync3(int fps) { /* public static void sync3(int fps) {
long savedTimeThen; long savedTimeThen;
long timeNow; long timeNow;
synchronized (GlobalLock.lock) { synchronized (GlobalLock.lock) {
@ -411,7 +411,7 @@ public final class Display {
timeNow = Sys.getTime(); timeNow = Sys.getTime();
} }
} }
*/
private static long timeLate; private static long timeLate;
/** /**
@ -419,7 +419,7 @@ public final class Display {
* *
* @param fps The desired frame rate, in frames per second * @param fps The desired frame rate, in frames per second
*/ */
public static void sync2(int fps) { /* public static void sync2(int fps) {
long timeNow; long timeNow;
long gapTo; long gapTo;
long savedTimeLate; long savedTimeLate;
@ -443,7 +443,7 @@ public final class Display {
timeThen = timeNow; timeThen = timeNow;
} }
} }
*/
/** /**
* Best sync method that works reliably. * Best sync method that works reliably.
* *