| Index: include/gpu/GrCaps.h
|
| diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h
|
| index 944fb1481c1e9a4dd0391d5fad104666570eb34c..fc682069eac794bc88e9e57747f0c716890ad645 100644
|
| --- a/include/gpu/GrCaps.h
|
| +++ b/include/gpu/GrCaps.h
|
| @@ -62,6 +62,7 @@ public:
|
| bool pathRenderingSupport() const { return fPathRenderingSupport; }
|
| bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; }
|
| bool dualSourceBlendingSupport() const { return fDualSourceBlendingSupport; }
|
| + bool integerSupport() const { return fIntegerSupport; }
|
|
|
| /**
|
| * Get the precision info for a variable of type kFloat_GrSLType, kVec2f_GrSLType, etc in a
|
| @@ -109,6 +110,7 @@ protected:
|
| bool fPathRenderingSupport : 1;
|
| bool fDstReadInShaderSupport : 1;
|
| bool fDualSourceBlendingSupport : 1;
|
| + bool fIntegerSupport : 1;
|
|
|
| bool fShaderPrecisionVaries;
|
| PrecisionInfo fFloatPrecisions[kGrShaderTypeCount][kGrSLPrecisionCount];
|
|
|