Index: tools/PictureRenderer.h |
diff --git a/tools/PictureRenderer.h b/tools/PictureRenderer.h |
index c8462d9f037c213d1b9bc718c6ac524100be5f69..e82eb7fb8ab2df1f842f7b6e8966ec7148047428 100644 |
--- a/tools/PictureRenderer.h |
+++ b/tools/PictureRenderer.h |
@@ -220,10 +220,6 @@ |
void setSampleCount(int sampleCount) { |
fSampleCount = sampleCount; |
} |
- |
- void setUseDFText(bool useDFText) { |
- fUseDFText = useDFText; |
- } |
#endif |
void setDrawFilters(DrawFilterFlags const * const filters, const SkString& configName) { |
@@ -278,8 +274,6 @@ |
case kGPU_DeviceType: |
if (fSampleCount) { |
config.appendf("_msaa%d", fSampleCount); |
- } else if (fUseDFText) { |
- config.append("_gpudft"); |
} else { |
config.append("_gpu"); |
} |
@@ -331,8 +325,6 @@ |
tmp = "msaa"; |
tmp.appendS32(fSampleCount); |
result["config"] = tmp.c_str(); |
- } else if (fUseDFText) { |
- result["config"] = "gpudft"; |
} else { |
result["config"] = "gpu"; |
} |
@@ -436,7 +428,6 @@ |
, fGrContextFactory(opts) |
, fGrContext(NULL) |
, fSampleCount(0) |
- , fUseDFText(false) |
#endif |
{ |
fGridInfo.fMargin.setEmpty(); |
@@ -504,7 +495,6 @@ |
GrContextFactory fGrContextFactory; |
GrContext* fGrContext; |
int fSampleCount; |
- bool fUseDFText; |
#endif |
virtual SkString getConfigNameInternal() = 0; |