Index: src/gpu/GrDrawTargetCaps.h |
diff --git a/src/gpu/GrDrawTargetCaps.h b/src/gpu/GrDrawTargetCaps.h |
index b316e491c196ed4b8967099fdd2a4db2625cd51c..b33217a125e528b62824a29a3f0a383ec7ea4e6e 100644 |
--- a/src/gpu/GrDrawTargetCaps.h |
+++ b/src/gpu/GrDrawTargetCaps.h |
@@ -40,6 +40,7 @@ public: |
bool bufferLockSupport() const { return fBufferLockSupport; } |
bool pathRenderingSupport() const { return fPathRenderingSupport; } |
bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; } |
+ bool gpuTracingSupport() const { return fGpuTracingSupport; } |
// Scratch textures not being reused means that those scratch textures |
// that we upload to (i.e., don't have a render target) will not be |
@@ -71,6 +72,7 @@ protected: |
bool fPathRenderingSupport : 1; |
bool fDstReadInShaderSupport : 1; |
bool fReuseScratchTextures : 1; |
+ bool fGpuTracingSupport : 1; |
int fMaxRenderTargetSize; |
int fMaxTextureSize; |