aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/BenchGpuTimer_none.h
blob: 3fad8d84f9c4191ecdd2c90322d4c3c7d39c4f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#ifndef SkBenchGpuTimer_DEFINED
#define SkBenchGpuTimer_DEFINED

class BenchGpuTimer {
public:
    BenchGpuTimer();
    ~BenchGpuTimer();
    void startGpu();
    double endGpu();
};

#endif