Index: tools/PictureBenchmark.h |
=================================================================== |
--- tools/PictureBenchmark.h (revision 14079) |
+++ tools/PictureBenchmark.h (working copy) |
@@ -43,9 +43,12 @@ |
void setTimeIndividualTiles(bool indiv) { fTimeIndividualTiles = indiv; } |
bool timeIndividualTiles() const { return fTimeIndividualTiles; } |
- void setPurgeDecodedTex(bool purgeDecodedTex) { fPurgeDecodedTex = purgeDecodedTex; } |
- bool purgeDecodedText() const { return fPurgeDecodedTex; } |
+ void setPurgeDecodedTex1(bool purgeDecodedTex) { fPurgeDecodedTex1 = purgeDecodedTex; } |
+ bool purgeDecodedText1() const { return fPurgeDecodedTex1; } |
+ void setPreprocess(bool preprocess) { fPreprocess = preprocess; } |
+ bool preprocess() const { return fPreprocess; } |
+ |
PictureRenderer* setRenderer(PictureRenderer*); |
void setTimerResultType(TimerData::Result resultType) { fTimerResult = resultType; } |
@@ -61,7 +64,8 @@ |
TimerData::Result fTimerResult; |
uint32_t fTimerTypes; // bitfield of TimerData::TimerFlags values |
bool fTimeIndividualTiles; |
- bool fPurgeDecodedTex; |
+ bool fPurgeDecodedTex1; |
+ bool fPreprocess; |
void logProgress(const char msg[]); |