Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbd62aff authored by Haibo Huang's avatar Haibo Huang Committed by android-build-merger
Browse files

Merge "Update to follow the new google benchmark API"

am: d22ba181

Change-Id: Ie5065ff193bfe187683e729d589138c24f4f2fac
parents ad1e0006 d22ba181
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ void outputBenchmarkReport(const TestScene::Info& info, const TestScene::Options
    // mean and stddev which doesn't make sense for our usage
    std::vector<BenchmarkReporter::Run> reports;
    BenchmarkReporter::Run report;
    report.run_name = info.name;
    report.run_name.function_name = info.name;
    report.iterations = static_cast<int64_t>(opts.count);
    report.real_accumulated_time = durationInS;
    report.cpu_accumulated_time = durationInS;
@@ -94,8 +94,8 @@ void outputBenchmarkReport(const TestScene::Info& info, const TestScene::Options
    // in that test case than percentiles.
    if (!opts.renderOffscreen) {
        for (auto& ri : REPORTS) {
            reports[0].run_name = info.name;
            reports[0].run_name += ri.suffix;
            reports[0].run_name.function_name = info.name;
            reports[0].run_name.function_name += ri.suffix;
            durationInS = proxy->frameTimePercentile(ri.percentile) / 1000.0;
            reports[0].real_accumulated_time = durationInS;
            reports[0].cpu_accumulated_time = durationInS;