| Index: src/gpu/GrDrawTargetCaps.h
|
| diff --git a/src/gpu/GrDrawTargetCaps.h b/src/gpu/GrDrawTargetCaps.h
|
| index b33217a125e528b62824a29a3f0a383ec7ea4e6e..a77bce4430153d373f142d8e366b4ebbe7875d2e 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 discardRenderTargetSupport() const { return fDiscardRenderTargetSupport; }
|
| bool gpuTracingSupport() const { return fGpuTracingSupport; }
|
|
|
| // Scratch textures not being reused means that those scratch textures
|
| @@ -71,6 +72,7 @@ protected:
|
| bool fBufferLockSupport : 1;
|
| bool fPathRenderingSupport : 1;
|
| bool fDstReadInShaderSupport : 1;
|
| + bool fDiscardRenderTargetSupport: 1;
|
| bool fReuseScratchTextures : 1;
|
| bool fGpuTracingSupport : 1;
|
|
|
|
|