skia2/bench/RecordingBench.cpp
Kevin Lubick efce17de5d Reland "[includes] Remove link between SkImage.h and SkImageEncoder.h"
This is a reland of commit f60584eb0f

Client changes:
 - https://chromium-review.googlesource.com/c/chromium/src/+/3508565
 - http://cl/433225409
 - http://cl/433450799

Original change's description:
> [includes] Remove link between SkImage.h and SkImageEncoder.h
>
> According to go/chrome-includes [1], this will save about
> 210MB (0.09%) off the Chrome build. http://screen/GVdDaRRneTRuroL
>
> [1] https://commondatastorage.googleapis.com/chromium-browser-clang/include-analysis.html#view=edges&filter=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImage%5C.h%24&sort=asize&reverse=&includer=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImage%5C.h%24&included=&limit=1000
>
> Change-Id: If911ec283a9ce2b07c8509768a6a05446573a215
> Bug: 242216
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/512416
> Reviewed-by: Leon Scroggins <scroggo@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>
> Commit-Queue: Kevin Lubick <kjlubick@google.com>

Bug: 242216
Change-Id: Ic61e4ac2878e7a51f389312a3a434856e2e32be3
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/518277
Reviewed-by: Leon Scroggins <scroggo@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2022-03-10 04:47:51 +00:00

76 lines
2.3 KiB
C++

/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "bench/RecordingBench.h"
#include "include/core/SkBBHFactory.h"
#include "include/core/SkData.h"
#include "include/core/SkPictureRecorder.h"
PictureCentricBench::PictureCentricBench(const char* name, const SkPicture* pic) : fName(name) {
// Flatten the source picture in case it's trivially nested (useless for timing).
SkPictureRecorder rec;
pic->playback(rec.beginRecording(pic->cullRect(), nullptr /*,
SkPictureRecorder::kPlaybackDrawPicture_RecordFlag*/));
fSrc = rec.finishRecordingAsPicture();
}
const char* PictureCentricBench::onGetName() {
return fName.c_str();
}
bool PictureCentricBench::isSuitableFor(Backend backend) {
return backend == kNonRendering_Backend;
}
SkIPoint PictureCentricBench::onGetSize() {
return SkIPoint::Make(SkScalarCeilToInt(fSrc->cullRect().width()),
SkScalarCeilToInt(fSrc->cullRect().height()));
}
///////////////////////////////////////////////////////////////////////////////////////////////////
RecordingBench::RecordingBench(const char* name, const SkPicture* pic, bool useBBH)
: INHERITED(name, pic)
, fUseBBH(useBBH)
{}
void RecordingBench::onDraw(int loops, SkCanvas*) {
SkRTreeFactory factory;
SkPictureRecorder recorder;
while (loops --> 0) {
fSrc->playback(recorder.beginRecording(fSrc->cullRect(), fUseBBH ? &factory : nullptr));
(void)recorder.finishRecordingAsPicture();
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
#include "include/core/SkSerialProcs.h"
DeserializePictureBench::DeserializePictureBench(const char* name, sk_sp<SkData> data)
: fName(name)
, fEncodedPicture(std::move(data))
{}
const char* DeserializePictureBench::onGetName() {
return fName.c_str();
}
bool DeserializePictureBench::isSuitableFor(Backend backend) {
return backend == kNonRendering_Backend;
}
SkIPoint DeserializePictureBench::onGetSize() {
return SkIPoint::Make(128, 128);
}
void DeserializePictureBench::onDraw(int loops, SkCanvas*) {
for (int i = 0; i < loops; ++i) {
SkPicture::MakeFromData(fEncodedPicture.get());
}
}