diff options
author | Sven Gothel <[email protected]> | 2023-03-06 22:28:47 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-06 22:28:47 +0100 |
commit | b773048aee7ebfb00b7ae7b45ef9f49e88ebc5a4 (patch) | |
tree | f0fd56e5e40a97a0bd49d241d58f6445b0dc0fe6 /src/java/com/jogamp/common/util/PerfCounterCtrl.java | |
parent | 0836295b52aaad1dce10a31a13cb544802d7de03 (diff) |
Clock: Rename currentTimeNanos() -> currentNanos() as it represents the duration since module startup and not time.
Diffstat (limited to 'src/java/com/jogamp/common/util/PerfCounterCtrl.java')
-rw-r--r-- | src/java/com/jogamp/common/util/PerfCounterCtrl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/util/PerfCounterCtrl.java b/src/java/com/jogamp/common/util/PerfCounterCtrl.java index 30290f8..2c79a2d 100644 --- a/src/java/com/jogamp/common/util/PerfCounterCtrl.java +++ b/src/java/com/jogamp/common/util/PerfCounterCtrl.java @@ -32,7 +32,7 @@ import com.jogamp.common.os.Clock; * Simple performance counter controller. * <p> * Implementation is expected to utilize nanosecond counter since module start, - * e.g. {@link Clock#currentTimeNanos()}. + * e.g. {@link Clock#currentNanos()}. * </p> */ public interface PerfCounterCtrl { |