| Index: src/gpu/GrCaps.cpp | 
| diff --git a/src/gpu/GrCaps.cpp b/src/gpu/GrCaps.cpp | 
| index 41f5b9b391357d8a0e5940799df10b75f8927fc5..1056c426aa202ae682e52bb32500c311868a970d 100644 | 
| --- a/src/gpu/GrCaps.cpp | 
| +++ b/src/gpu/GrCaps.cpp | 
| @@ -15,6 +15,7 @@ GrShaderCaps::GrShaderCaps() { | 
| fDstReadInShaderSupport = false; | 
| fDualSourceBlendingSupport = false; | 
| fIntegerSupport = false; | 
| +    fTexelBufferSupport = false; | 
| fShaderPrecisionVaries = false; | 
| } | 
|  | 
| @@ -51,6 +52,7 @@ SkString GrShaderCaps::dump() const { | 
| r.appendf("Dst Read In Shader Support         : %s\n", gNY[fDstReadInShaderSupport]); | 
| r.appendf("Dual Source Blending Support       : %s\n", gNY[fDualSourceBlendingSupport]); | 
| r.appendf("Integer Support                    : %s\n", gNY[fIntegerSupport]); | 
| +    r.appendf("Texel Buffer Support               : %s\n", gNY[fTexelBufferSupport]); | 
|  | 
| r.appendf("Shader Float Precisions (varies: %s):\n", gNY[fShaderPrecisionVaries]); | 
|  | 
|  |