OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:repeatdraw
(Results
1 - 3
of
3
) sorted by null
/external/skia/bench/
TimerData.cpp
71
SkString TimerData::getResult(bool logPerIter, bool printMin, int
repeatDraw
,
79
fWallStr.appendf(format, printMin ? fWallMin : fWallSum /
repeatDraw
);
81
fCpuStr.appendf(format, printMin ? fCpuMin : fCpuSum /
repeatDraw
);
84
printMin ? fTruncatedWallMin : fTruncatedWallSum /
repeatDraw
);
87
printMin ? fTruncatedCpuMin : fTruncatedCpuSum /
repeatDraw
);
89
fGpuStr.appendf(format, printMin ? fGpuMin : fGpuSum /
repeatDraw
);
TimerData.h
27
SkString getResult(bool logPerIter, bool printMin, int
repeatDraw
, const char* configName,
benchmain.cpp
407
int
repeatDraw
= 1;
452
repeatDraw
= atoi(*argv);
453
if (
repeatDraw
< 1) {
454
repeatDraw
= 1;
817
if (
repeatDraw
> 1) {
846
for (int i = 0; i <
repeatDraw
; i++) {
882
timerData.appendTimes(&timer,
repeatDraw
- 1 == i);
885
if (
repeatDraw
> 1) {
886
SkString result = timerData.getResult(logPerIter, printMin,
repeatDraw
, configName,
Completed in 345 milliseconds