Flutter Engine
The Flutter Engine
Public Member Functions | Protected Member Functions | List of all members
PathOpsSimplifyBench Class Reference
Inheritance diagram for PathOpsSimplifyBench:
Benchmark SkRefCnt SkRefCntBase

Public Member Functions

 PathOpsSimplifyBench (const char suffix[], const SkPath &path)
 
bool isSuitableFor (Backend backend) override
 
- Public Member Functions inherited from Benchmark
 Benchmark ()
 
const char * getName ()
 
const char * getUniqueName ()
 
SkISize getSize ()
 
virtual bool isSuitableFor (Backend backend)
 
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

const char * onGetName () override
 
void onDraw (int loops, SkCanvas *canvas) override
 
- Protected Member Functions inherited from Benchmark
void setUnits (int units)
 
virtual void setupPaint (SkPaint *paint)
 
virtual const char * onGetName ()=0
 
virtual const char * onGetUniqueName ()
 
virtual void onDelayedSetup ()
 
virtual void onPerCanvasPreDraw (SkCanvas *)
 
virtual void onPerCanvasPostDraw (SkCanvas *)
 
virtual void onPreDraw (SkCanvas *)
 
virtual void onPostDraw (SkCanvas *)
 
virtual void onDraw (int loops, SkCanvas *)=0
 
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 51 of file PathOpsBench.cpp.

Constructor & Destructor Documentation

◆ PathOpsSimplifyBench()

PathOpsSimplifyBench::PathOpsSimplifyBench ( const char  suffix[],
const SkPath path 
)
inline

Definition at line 56 of file PathOpsBench.cpp.

56 : fPath(path) {
57 fName.printf("pathops_simplify_%s", suffix);
58 }
void printf(const char format[],...) SK_PRINTF_LIKE(2
Definition: SkString.cpp:534
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition: switches.h:57

Member Function Documentation

◆ isSuitableFor()

bool PathOpsSimplifyBench::isSuitableFor ( Backend  backend)
inlineoverridevirtual

Reimplemented from Benchmark.

Definition at line 60 of file PathOpsBench.cpp.

60 {
62 }
const char * backend

◆ onDraw()

void PathOpsSimplifyBench::onDraw ( int  loops,
SkCanvas canvas 
)
inlineoverrideprotectedvirtual

Implements Benchmark.

Definition at line 69 of file PathOpsBench.cpp.

69 {
70 for (int i = 0; i < loops; i++) {
71 for (int j = 0; j < 100; ++j) {
73 Simplify(fPath, &result);
74 }
75 }
76 }
bool SK_API Simplify(const SkPath &path, SkPath *result)
Definition: SkPath.h:59
GAsyncResult * result

◆ onGetName()

const char * PathOpsSimplifyBench::onGetName ( )
inlineoverrideprotectedvirtual

Implements Benchmark.

Definition at line 65 of file PathOpsBench.cpp.

65 {
66 return fName.c_str();
67 }
const char * c_str() const
Definition: SkString.h:133

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