2012-07-24 20:47:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkBenchmark.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkWriter32.h"
|
|
|
|
|
|
|
|
class WriterBench : public SkBenchmark {
|
|
|
|
public:
|
2013-09-13 19:52:27 +00:00
|
|
|
WriterBench() { fIsRendering = false; }
|
2012-07-24 20:47:55 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual const char* onGetName() SK_OVERRIDE {
|
|
|
|
return "writer";
|
|
|
|
}
|
|
|
|
|
2013-03-05 18:50:01 +00:00
|
|
|
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
|
2012-07-24 20:47:55 +00:00
|
|
|
static const char gStr[] = "abcdefghimjklmnopqrstuvwxyz";
|
|
|
|
static const size_t gLen = strlen(gStr);
|
|
|
|
SkWriter32 writer(256 * 4);
|
2013-09-10 19:23:38 +00:00
|
|
|
for (int i = 0; i < this->getLoops(); i++) {
|
2012-07-24 20:47:55 +00:00
|
|
|
for (size_t j = 0; j <= gLen; j++) {
|
|
|
|
writer.writeString(gStr, j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkBenchmark INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-13 19:52:27 +00:00
|
|
|
DEF_BENCH( return new WriterBench(); )
|