Update BenchGpuTimer.cpp to new interface.

http://codereview.appspot.com/4645055/


git-svn-id: http://skia.googlecode.com/svn/trunk@1678 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bungeman@google.com 2011-06-23 13:14:57 +00:00
parent 242bb89c0d
commit 3c1412f717

View File

@ -3,11 +3,12 @@
BenchGpuTimer::BenchGpuTimer() {
}
BenchTimer::~BenchTimer() {
BenchGpuTimer::~BenchGpuTimer() {
}
void BenchTimer::startGpu() {
void BenchGpuTimer::startGpu() {
}
void BenchTimer::endGpu() {
double BenchGpuTimer::endGpu() {
return -1.0;
}