int argc,
char **argv,
const BenchmarkControl& benchControl,
- Histogram* histogram) {
+ Histogram** histogram) {
static const SkString timeFormat("%f");
TimerData timerData(timeFormat, timeFormat);
benchControl.fFunction(benchControl.fType, benchControl.fTileSize, path, pic, &timer);
timerData.appendTimes(&timer, argc - 1 == index);
- histogram[index - 1].fPath = path;
- histogram[index - 1].fCpuTime = SkDoubleToScalar(timer.fCpu);
+ histogram[index - 1]->fPath = path;
+ histogram[index - 1]->fCpuTime = SkDoubleToScalar(timer.fCpu);
}
const SkString timerResult = timerData.getResult(
return -1;
}
- Histogram histograms[argc - 1][kNumBenchmarks];
+ Histogram* histograms[kNumBenchmarks];
for (size_t i = 0; i < kNumBenchmarks; ++i) {
+ histograms[i] = SkNEW_ARRAY(Histogram, argc - 1);
bool success = benchmark_loop(
argc, argv,
BenchmarkControl::Make(i),
- histograms[i]);
+ &histograms[i]);
if (!success) {
SkDebugf("benchmark_loop failed at index %d", i);
}