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

Public Member Functions

 Fixed32D32Interp ()
 
- Public Member Functions inherited from InterpBench
 InterpBench (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 performTest (int16_t dst[], float fx, float dx, int count) override
 
- Protected Member Functions inherited from InterpBench
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 76 of file InterpBench.cpp.

Constructor & Destructor Documentation

◆ Fixed32D32Interp()

Fixed32D32Interp::Fixed32D32Interp ( )
inline

Definition at line 78 of file InterpBench.cpp.

78: INHERITED("32.32") {}

Member Function Documentation

◆ performTest()

void Fixed32D32Interp::performTest ( int16_t  dst[],
float  fx,
float  dx,
int  count 
)
inlineoverrideprotectedvirtual

Implements InterpBench.

Definition at line 81 of file InterpBench.cpp.

81 {
82 int64_t curr = (int64_t)(fx * 65536 * 655536);
83 int64_t step = (int64_t)(dx * 65536 * 655536);
84 SkFixed tmp;
85 for (int i = 0; i < count; i += 4) {
86 tmp = (SkFixed)(curr >> 16);
87 dst[i + 0] = TILE(tmp, count);
88 curr += step;
89
90 tmp = (SkFixed)(curr >> 16);
91 dst[i + 1] = TILE(tmp, count);
92 curr += step;
93
94 tmp = (SkFixed)(curr >> 16);
95 dst[i + 2] = TILE(tmp, count);
96 curr += step;
97
98 tmp = (SkFixed)(curr >> 16);
99 dst[i + 3] = TILE(tmp, count);
100 curr += step;
101 }
102 }
static int step(int x, SkScalar min, SkScalar max)
Definition BlurTest.cpp:215
int count
#define TILE(x, width)
int32_t SkFixed
Definition SkFixed.h:25
dst
Definition cp.py:12

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