Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | List of all members
QMul32Bench Class Reference
Inheritance diagram for QMul32Bench:
MathBenchU32 MathBench Benchmark SkRefCnt SkRefCntBase

Public Member Functions

 QMul32Bench ()
 
- Public Member Functions inherited from MathBenchU32
 MathBenchU32 (const char name[])
 
- Public Member Functions inherited from MathBench
 MathBench (const char name[])
 
bool isSuitableFor (Backend backend) override
 
- Public Member Functions inherited from Benchmark
 Benchmark ()
 
const char * getName ()
 
const char * getUniqueName ()
 
SkISize getSize ()
 
virtual void modifyGrContextOptions (GrContextOptions *)
 
virtual bool shouldLoop () const
 
void delayedSetup ()
 
void perCanvasPreDraw (SkCanvas *)
 
void perCanvasPostDraw (SkCanvas *)
 
void preDraw (SkCanvas *)
 
void postDraw (SkCanvas *)
 
void draw (int loops, SkCanvas *)
 
virtual void getGpuStats (SkCanvas *, skia_private::TArray< SkString > *keys, skia_private::TArray< double > *values)
 
virtual bool getDMSAAStats (GrRecordingContext *)
 
int getUnits () const
 
- Public Member Functions inherited from SkRefCntBase
 SkRefCntBase ()
 
virtual ~SkRefCntBase ()
 
bool unique () const
 
void ref () const
 
void unref () const
 

Protected Member Functions

void performITest (uint32_t *SK_RESTRICT dst, const uint32_t *SK_RESTRICT src, int count) override
 
- Protected Member Functions inherited from MathBenchU32
void performTest (float *SK_RESTRICT dst, const float *SK_RESTRICT src, int count) override
 
- Protected Member Functions inherited from MathBench
virtual int mulLoopCount () const
 
const char * onGetName () override
 
void onDraw (int loops, SkCanvas *) override
 
- Protected Member Functions inherited from Benchmark
void setUnits (int units)
 
virtual void setupPaint (SkPaint *paint)
 
virtual const char * onGetUniqueName ()
 
virtual void onDelayedSetup ()
 
virtual void onPerCanvasPreDraw (SkCanvas *)
 
virtual void onPerCanvasPostDraw (SkCanvas *)
 
virtual void onPreDraw (SkCanvas *)
 
virtual void onPostDraw (SkCanvas *)
 
virtual SkISize onGetSize ()
 

Additional Inherited Members

- Public Types inherited from Benchmark
enum class  Backend {
  kNonRendering , kRaster , kGanesh , kGraphite ,
  kPDF , kHWUI
}
 

Detailed Description

Definition at line 167 of file MathBench.cpp.

Constructor & Destructor Documentation

◆ QMul32Bench()

QMul32Bench::QMul32Bench ( )
inline

Definition at line 169 of file MathBench.cpp.

169: INHERITED("qmul32") {}

Member Function Documentation

◆ performITest()

void QMul32Bench::performITest ( uint32_t *SK_RESTRICT  dst,
const uint32_t *SK_RESTRICT  src,
int  count 
)
inlineoverrideprotectedvirtual

Implements MathBenchU32.

Definition at line 171 of file MathBench.cpp.

173 {
174 for (int i = 0; i < count; ++i) {
175 dst[i] = SkAlphaMulQ(src[i], (uint8_t)i);
176 }
177 }
int count
static SK_ALWAYS_INLINE uint32_t SkAlphaMulQ(uint32_t c, unsigned scale)
dst
Definition cp.py:12

The documentation for this class was generated from the following file: