mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-21 21:05:21 +08:00
33 lines
627 B
C++
33 lines
627 B
C++
//
|
|
// Copyright (c) 2015 The ANGLE Project Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
//
|
|
|
|
// OSXTimer.h: Definition of a high precision timer class on OSX
|
|
|
|
#ifndef UTIL_OSX_TIMER_H_
|
|
#define UTIL_OSX_TIMER_H_
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#include "Timer.h"
|
|
|
|
class OSXTimer : public Timer
|
|
{
|
|
public:
|
|
OSXTimer();
|
|
|
|
void start() override;
|
|
void stop() override;
|
|
double getElapsedTime() const override;
|
|
|
|
private:
|
|
bool mRunning;
|
|
uint64_t mStartTime;
|
|
uint64_t mStopTime;
|
|
};
|
|
|
|
#endif // UTIL_OSX_TIMER_H_
|