Remove benchmarks.

This commit is contained in:
John Preston 2019-05-17 18:49:42 +03:00
parent 630c07391c
commit 68fb9b8b67
2 changed files with 0 additions and 10 deletions

View File

@ -88,7 +88,6 @@ Animation::Animation(QByteArray &&content)
: _timer([=] { checkNextFrame(); }) { : _timer([=] { checkNextFrame(); }) {
const auto weak = base::make_weak(this); const auto weak = base::make_weak(this);
crl::async([=, content = base::take(content)]() mutable { crl::async([=, content = base::take(content)]() mutable {
const auto now = crl::now();
content = UnpackGzip(content); content = UnpackGzip(content);
if (content.size() > kMaxSize) { if (content.size() > kMaxSize) {
qWarning() qWarning()
@ -100,7 +99,6 @@ Animation::Animation(QByteArray &&content)
return; return;
} }
const auto document = JsonDocument(std::move(content)); const auto document = JsonDocument(std::move(content));
const auto parsed = crl::now();
if (const auto error = document.error()) { if (const auto error = document.error()) {
qWarning() qWarning()
<< "Lottie Error: Parse failed with code: " << "Lottie Error: Parse failed with code: "
@ -114,8 +112,6 @@ Animation::Animation(QByteArray &&content)
parseDone(std::move(result)); parseDone(std::move(result));
}); });
} }
const auto finish = crl::now();
LOG(("INIT: %1 (PARSE %2)").arg(finish - now).arg(parsed - now));
}); });
} }

View File

@ -193,7 +193,6 @@ void SharedState::renderFrame(
if (!GoodStorageForFrame(image, size)) { if (!GoodStorageForFrame(image, size)) {
image = CreateFrameStorage(size); image = CreateFrameStorage(size);
} }
const auto now = crl::now();
image.fill(Qt::transparent); image.fill(Qt::transparent);
QPainter p(&image); QPainter p(&image);
@ -213,13 +212,8 @@ void SharedState::renderFrame(
_scene.endFrame() - 1); _scene.endFrame() - 1);
_scene.updateProperties(frame); _scene.updateProperties(frame);
const auto updated = crl::now();
RasterRenderer renderer(&p); RasterRenderer renderer(&p);
_scene.render(renderer, frame); _scene.render(renderer, frame);
const auto finished = crl::now();
LOG(("RENDERED: %1 (UPDATE %2)").arg(finished - now).arg(updated - now));
} }
void SharedState::init(QImage cover) { void SharedState::init(QImage cover) {