| Index: src/gpu/GrDrawTargetCaps.h
|
| diff --git a/src/gpu/GrDrawTargetCaps.h b/src/gpu/GrDrawTargetCaps.h
|
| index 08f4f4338218540427e43e4636826775ff7a62ca..e1fd1cf40340aa40904d6188f0c39d3d9de1e59f 100644
|
| --- a/src/gpu/GrDrawTargetCaps.h
|
| +++ b/src/gpu/GrDrawTargetCaps.h
|
| @@ -86,6 +86,7 @@ public:
|
| #endif
|
| bool compressedTexSubImageSupport() const { return fCompressedTexSubImageSupport; }
|
| bool oversizedStencilSupport() const { return fOversizedStencilSupport; }
|
| + bool textureBarrierSupport() const { return fTextureBarrierSupport; }
|
|
|
| bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; }
|
|
|
| @@ -157,6 +158,7 @@ protected:
|
| bool fGpuTracingSupport : 1;
|
| bool fCompressedTexSubImageSupport : 1;
|
| bool fOversizedStencilSupport : 1;
|
| + bool fTextureBarrierSupport : 1;
|
| // Driver workaround
|
| bool fUseDrawInsteadOfClear : 1;
|
|
|
|
|