| Index: src/gpu/glsl/GrGLSLCaps.cpp
|
| diff --git a/src/gpu/glsl/GrGLSLCaps.cpp b/src/gpu/glsl/GrGLSLCaps.cpp
|
| index 1f4b855f5dacea30baea57094dc5176ddf7e170d..b33e3082ecdc4f49ccfd4d2154c7a510d7ccd516 100755
|
| --- a/src/gpu/glsl/GrGLSLCaps.cpp
|
| +++ b/src/gpu/glsl/GrGLSLCaps.cpp
|
| @@ -23,6 +23,7 @@ GrGLSLCaps::GrGLSLCaps(const GrContextOptions& options) {
|
| fCanUseAnyFunctionInShader = true;
|
| fCanUseMinAndAbsTogether = true;
|
| fMustForceNegatedAtanParamToFloat = false;
|
| + fRequiresLocalOutputColorForFBFetch = false;
|
| fFlatInterpolationSupport = false;
|
| fNoPerspectiveInterpolationSupport = false;
|
| fMultisampleInterpolationSupport = false;
|
| @@ -73,6 +74,8 @@ SkString GrGLSLCaps::dump() const {
|
| r.appendf("Can use min() and abs() together: %s\n", (fCanUseMinAndAbsTogether ? "YES" : "NO"));
|
| r.appendf("Must force negated atan param to float: %s\n", (fMustForceNegatedAtanParamToFloat ?
|
| "YES" : "NO"));
|
| + r.appendf("Must use local out color for FBFetch: %s\n", (fRequiresLocalOutputColorForFBFetch ?
|
| + "YES" : "NO"));
|
| r.appendf("Flat interpolation support: %s\n", (fFlatInterpolationSupport ? "YES" : "NO"));
|
| r.appendf("No perspective interpolation support: %s\n", (fNoPerspectiveInterpolationSupport ?
|
| "YES" : "NO"));
|
|
|