diff options
author | John Reck <jreck@google.com> | 2014-01-29 18:31:51 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2014-01-29 19:59:16 -0800 |
commit | a6260b83da52b80438074a9fd207327d9e6e6d03 (patch) | |
tree | c0cb709f5fe6ffa22a885a49d9fc83939674e97f /libs/hwui/renderthread/RenderTask.h | |
parent | e0d1e295f15a5c70ca030732fd9309f0dc50b2cc (diff) |
Fix nano vs. millis
Change-Id: I54f752bb7faab5fa66c36252c9f7cf8f5c9939c9
Diffstat (limited to 'libs/hwui/renderthread/RenderTask.h')
-rw-r--r-- | libs/hwui/renderthread/RenderTask.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/RenderTask.h b/libs/hwui/renderthread/RenderTask.h index 9fe7573f71b7..1554a167e10c 100644 --- a/libs/hwui/renderthread/RenderTask.h +++ b/libs/hwui/renderthread/RenderTask.h @@ -53,7 +53,7 @@ public: ANDROID_API virtual void run() = 0; RenderTask* mNext; - nsecs_t mRunAt; + nsecs_t mRunAt; // nano-seconds on the SYSTEM_TIME_MONOTONIC clock }; class SignalingRenderTask : public RenderTask { |