Hash :
ec0b1362
Author :
Date :
2015-05-06T10:47:11
Make util/win32 follow ANGLE conventions better BUG=angleproject:892 Change-Id: I1ad366e16b135649fe1b0351081f9971db84df50 Reviewed-on: https://chromium-review.googlesource.com/269665 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>
//
// Copyright (c) 2014 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.
//
// Win32Timer.h: Definition of a high precision timer class on Windows
#ifndef UTIL_WIN32_TIMER_H
#define UTIL_WIN32_TIMER_H
#include <windows.h>
#include "Timer.h"
class Win32Timer : public Timer
{
public:
Win32Timer();
void start() override;
void stop() override;
double getElapsedTime() const override;
private:
bool mRunning;
LONGLONG mStartTime;
LONGLONG mStopTime;
LONGLONG mFrequency;
};
#endif // UTIL_WIN32_TIMER_H