aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/BitmapRectBench.cpp
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-16 15:57:13 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-16 15:57:13 +0000
commitb8b92ea089a380e17984e4df7b49b379cb6bd929 (patch)
tree1c5f5652c7dac5c06e9a913d3592800d01468b5c /bench/BitmapRectBench.cpp
parentdfdb7e5240276493077b7c6e1f3cc8b8a0e195ba (diff)
add DEF_BENCH marco to make it easy to register new benches
extend bitmaprect bench to include drawing with non-opaque alpha git-svn-id: http://skia.googlecode.com/svn/trunk@5965 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'bench/BitmapRectBench.cpp')
-rw-r--r--bench/BitmapRectBench.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/bench/BitmapRectBench.cpp b/bench/BitmapRectBench.cpp
index 2bed21d6dc..b9e71f753b 100644
--- a/bench/BitmapRectBench.cpp
+++ b/bench/BitmapRectBench.cpp
@@ -41,11 +41,15 @@ static void drawIntoBitmap(const SkBitmap& bm) {
class BitmapRectBench : public SkBenchmark {
SkBitmap fBitmap;
bool fDoFilter;
+ uint8_t fAlpha;
SkString fName;
SkRect fSrcR, fDstR;
enum { N = SkBENCHLOOP(300) };
public:
- BitmapRectBench(void* param, bool doFilter) : INHERITED(param), fDoFilter(doFilter) {
+ BitmapRectBench(void* param, U8CPU alpha, bool doFilter) : INHERITED(param) {
+ fAlpha = SkToU8(alpha);
+ fDoFilter = doFilter;
+
const int w = 128;
const int h = 128;
@@ -61,7 +65,7 @@ public:
protected:
virtual const char* onGetName() {
- fName.printf("bitmaprect_%sfilter", fDoFilter ? "" : "no");
+ fName.printf("bitmaprect_%02X_%sfilter", fAlpha, fDoFilter ? "" : "no");
return fName.c_str();
}
@@ -72,6 +76,7 @@ protected:
SkPaint paint;
this->setupPaint(&paint);
paint.setFilterBitmap(fDoFilter);
+ paint.setAlpha(fAlpha);
for (int i = 0; i < N; i++) {
canvas->drawBitmapRectToRect(fBitmap, &fSrcR, fDstR, &paint);
@@ -82,8 +87,8 @@ private:
typedef SkBenchmark INHERITED;
};
-static SkBenchmark* Fact0(void* p) { return new BitmapRectBench(p, false); }
-static SkBenchmark* Fact1(void* p) { return new BitmapRectBench(p, true); }
+DEF_BENCH(return new BitmapRectBench(p, 0xFF, false))
+DEF_BENCH(return new BitmapRectBench(p, 0x80, false))
+DEF_BENCH(return new BitmapRectBench(p, 0xFF, true))
+DEF_BENCH(return new BitmapRectBench(p, 0x80, true))
-static BenchRegistry gReg0(Fact0);
-static BenchRegistry gReg1(Fact1);