aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/timer/GpuTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/timer/GpuTimer.h')
-rw-r--r--tools/timer/GpuTimer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/timer/GpuTimer.h b/tools/timer/GpuTimer.h
index da1fdab5c0..2100312a21 100644
--- a/tools/timer/GpuTimer.h
+++ b/tools/timer/GpuTimer.h
@@ -7,18 +7,18 @@
#ifndef GpuTimer_DEFINED
#define GpuTimer_DEFINED
-class SkGLContext;
+class SkGLContextHelper;
class GpuTimer {
public:
- GpuTimer(const SkGLContext*);
+ GpuTimer(const SkGLContextHelper*);
~GpuTimer();
void start();
double end();
private:
unsigned fQuery;
int fStarted;
- const SkGLContext* fContext;
+ const SkGLContextHelper* fContext;
bool fSupported;
};