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

Public Member Functions

 SquarePatchBench (SkPoint scale, VertexMode vertexMode)
 
void appendName (SkString *name) override
 
void setCubics () override
 
- Public Member Functions inherited from PatchBench
 PatchBench (SkPoint scale, VertexMode vertexMode)
 
virtual void setColors ()
 
virtual void setTexCoords ()
 
virtual sk_sp< SkShadercreateShader ()
 
- 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
 

Additional Inherited Members

- Public Types inherited from PatchBench
enum  VertexMode { kNone_VertexMode , kColors_VertexMode , kTexCoords_VertexMode , kBoth_VertexMode }
 
- Public Types inherited from Benchmark
enum class  Backend {
  kNonRendering , kRaster , kGanesh , kGraphite ,
  kPDF , kHWUI
}
 
- Protected Types inherited from PatchBench
using INHERITED = Benchmark
 
- Protected Member Functions inherited from PatchBench
const char * onGetName () override
 
void onDelayedSetup () 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 * onGetUniqueName ()
 
virtual void onPerCanvasPreDraw (SkCanvas *)
 
virtual void onPerCanvasPostDraw (SkCanvas *)
 
virtual void onPreDraw (SkCanvas *)
 
virtual void onPostDraw (SkCanvas *)
 
virtual SkISize onGetSize ()
 
- Protected Attributes inherited from PatchBench
SkPaint fPaint
 
SkString fName
 
SkVector fScale
 
SkPoint fCubics [12]
 
SkPoint fTexCoords [4]
 
SkColor fColors [4]
 
VertexMode fVertexMode
 

Detailed Description

Definition at line 160 of file PatchBench.cpp.

Constructor & Destructor Documentation

◆ SquarePatchBench()

SquarePatchBench::SquarePatchBench ( SkPoint  scale,
VertexMode  vertexMode 
)
inline

Definition at line 162 of file PatchBench.cpp.

163 : INHERITED(scale, vertexMode) { }
const Scalar scale

Member Function Documentation

◆ appendName()

void SquarePatchBench::appendName ( SkString name)
inlineoverridevirtual

Reimplemented from PatchBench.

Definition at line 165 of file PatchBench.cpp.

165 {
166 name->append("square");
167 }
const char * name
Definition fuchsia.cc:50

◆ setCubics()

void SquarePatchBench::setCubics ( )
inlineoverridevirtual

Reimplemented from PatchBench.

Definition at line 169 of file PatchBench.cpp.

169 {
171 //top points
172 {100,100},{150,100},{250,100}, {300,100},
173 //right points
174 {300, 150},{300,250},
175 //bottom points
176 {300,300},{250,300},{150,300},{100,300},
177 //left points
178 {100,250},{100,150}
179 };
181 }
static const int points[]
SkPoint fCubics[12]

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