Index: include/gpu/GrPaint.h |
diff --git a/include/gpu/GrPaint.h b/include/gpu/GrPaint.h |
index 51a49210c6a7547f9ce16273e9ab314a359d180e..d52c6baec91a0c8e539a0fc8a969cc323048100c 100644 |
--- a/include/gpu/GrPaint.h |
+++ b/include/gpu/GrPaint.h |
@@ -57,12 +57,6 @@ public: |
void setAntiAlias(bool aa) { fAntiAlias = aa; } |
bool isAntiAlias() const { return fAntiAlias; } |
- /** |
- * Should dithering be applied. Defaults to false. |
- */ |
- void setDither(bool dither) { fDither = dither; } |
- bool isDither() const { return fDither; } |
- |
const GrXPFactory* setXPFactory(const GrXPFactory* xpFactory) { |
fXPFactory.reset(SkRef(xpFactory)); |
return xpFactory; |
@@ -122,7 +116,6 @@ public: |
GrPaint& operator=(const GrPaint& paint) { |
fAntiAlias = paint.fAntiAlias; |
- fDither = paint.fDither; |
fColor = paint.fColor; |
this->resetFragmentProcessors(); |
@@ -169,7 +162,6 @@ private: |
SkSTArray<2, const GrFragmentProcessor*, true> fCoverageFragmentProcessors; |
bool fAntiAlias; |
- bool fDither; |
GrColor fColor; |
GrProcessorDataManager fProcDataManager; |