Index: include/core/SkTypes.h |
diff --git a/include/core/SkTypes.h b/include/core/SkTypes.h |
index 6d0b63ec07330ce3800535c714c0095eb0b72bcd..41eddbef664846d340d020f4149b486bba4e3e8c 100644 |
--- a/include/core/SkTypes.h |
+++ b/include/core/SkTypes.h |
@@ -353,13 +353,15 @@ typedef uint32_t SkFourByteTag; |
/** 32 bit integer to hold a unicode value |
*/ |
typedef int32_t SkUnichar; |
-/** 32 bit value to hold a millisecond count |
-*/ |
+ |
+/** 32 bit value to hold a millisecond duration |
+ * Note that SK_MSecMax is about 25 days. |
+ */ |
typedef uint32_t SkMSec; |
/** 1 second measured in milliseconds |
*/ |
#define SK_MSec1 1000 |
-/** maximum representable milliseconds |
+/** maximum representable milliseconds; 24d 20h 31m 23.647s. |
*/ |
#define SK_MSecMax 0x7FFFFFFF |
/** Returns a < b for milliseconds, correctly handling wrap-around from 0xFFFFFFFF to 0 |