OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DrawBitmapAABench
(Results
1 - 2
of
2
) sorted by null
/external/skia/bench/
DrawBitmapAABench.cpp
18
class
DrawBitmapAABench
: public Benchmark {
20
DrawBitmapAABench
(bool doAA, const SkMatrix& matrix, const char name[])
56
DEF_BENCH( return new
DrawBitmapAABench
(false, SkMatrix::MakeScale(1), "ident"); )
58
DEF_BENCH( return new
DrawBitmapAABench
(false, SkMatrix::MakeScale(1.17f), "scale"); )
60
DEF_BENCH( return new
DrawBitmapAABench
(false, SkMatrix::MakeTrans(17.5f, 17.5f), "translate"); )
66
return new
DrawBitmapAABench
(false, m, "rotate");
69
DEF_BENCH( return new
DrawBitmapAABench
(true, SkMatrix::MakeScale(1), "ident"); )
71
DEF_BENCH( return new
DrawBitmapAABench
(true, SkMatrix::MakeScale(1.17f), "scale"); )
73
DEF_BENCH( return new
DrawBitmapAABench
(true, SkMatrix::MakeTrans(17.5f, 17.5f), "translate"); )
79
return new
DrawBitmapAABench
(true, m, "rotate")
[
all
...]
Android.mk
53
DrawBitmapAABench
.cpp \
Completed in 325 milliseconds