| Index: src/gpu/glsl/GrGLSLCaps.h
|
| diff --git a/src/gpu/glsl/GrGLSLCaps.h b/src/gpu/glsl/GrGLSLCaps.h
|
| index 19a34620dc0f41c2a84e641f76f12d24b279a53f..d8145e729d69bbf46f014ba1f30f4596d8acbc01 100755
|
| --- a/src/gpu/glsl/GrGLSLCaps.h
|
| +++ b/src/gpu/glsl/GrGLSLCaps.h
|
| @@ -91,6 +91,8 @@ public:
|
|
|
| bool mustForceNegatedAtanParamToFloat() const { return fMustForceNegatedAtanParamToFloat; }
|
|
|
| + bool requiresLocalOutputColorForFBFetch() const { return fRequiresLocalOutputColorForFBFetch; }
|
| +
|
| // Returns the string of an extension that must be enabled in the shader to support
|
| // derivatives. If nullptr is returned then no extension needs to be enabled. Before calling
|
| // this function, the caller should check that shaderDerivativeSupport exists.
|
| @@ -199,6 +201,7 @@ private:
|
| // Used for specific driver bug work arounds
|
| bool fCanUseMinAndAbsTogether : 1;
|
| bool fMustForceNegatedAtanParamToFloat : 1;
|
| + bool fRequiresLocalOutputColorForFBFetch : 1;
|
|
|
| const char* fVersionDeclString;
|
|
|
|
|