Index: include/gpu/GrCaps.h |
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h |
index 572b9caea7800e96119c93220e492a6f73ac1f80..2ee7a370813dc1df92deab2c9eb4cf85a2b1dcab 100644 |
--- a/include/gpu/GrCaps.h |
+++ b/include/gpu/GrCaps.h |
@@ -206,7 +206,9 @@ public: |
return fConfigTextureSupport[config]; |
} |
- bool suppressPrints() const { return fSupressPrints; } |
+ bool suppressPrints() const { return fSuppressPrints; } |
+ |
+ bool immediateFlush() const { return fImmediateFlush; } |
bool drawPathMasksToCompressedTexturesSupport() const { |
return fDrawPathMasksToCompressedTextureSupport; |
@@ -277,7 +279,8 @@ protected: |
private: |
virtual void onApplyOptionsOverrides(const GrContextOptions&) {}; |
- bool fSupressPrints : 1; |
+ bool fSuppressPrints : 1; |
+ bool fImmediateFlush: 1; |
bool fDrawPathMasksToCompressedTextureSupport : 1; |
typedef SkRefCnt INHERITED; |