Index: include/gpu/GrCaps.h |
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h |
index be62d8a851972a8cd1182852e34a430696264a46..580017a9fe40283d80ee6f5bee6a7c9398dc8496 100644 |
--- a/include/gpu/GrCaps.h |
+++ b/include/gpu/GrCaps.h |
@@ -13,8 +13,6 @@ |
#include "GrShaderVar.h" |
#include "SkRefCnt.h" |
#include "SkString.h" |
- |
-struct GrContextOptions; |
class GrShaderCaps : public SkRefCnt { |
public: |
@@ -105,7 +103,7 @@ |
public: |
SK_DECLARE_INST_COUNT(GrCaps) |
- GrCaps(const GrContextOptions&); |
+ GrCaps(); |
virtual SkString dump() const; |
@@ -188,11 +186,6 @@ |
return fConfigTextureSupport[config]; |
} |
- bool suppressPrints() const { return fSupressPrints; } |
- |
- bool drawPathMasksToCompressedTexturesSupport() const { |
- return fDrawPathMasksToCompressedTextureSupport; } |
- |
protected: |
SkAutoTUnref<GrShaderCaps> fShaderCaps; |
@@ -221,9 +214,6 @@ |
bool fConfigTextureSupport[kGrPixelConfigCnt]; |
private: |
- bool fSupressPrints : 1; |
- bool fDrawPathMasksToCompressedTextureSupport : 1; |
- |
typedef SkRefCnt INHERITED; |
}; |