Index: src/gpu/glsl/GrGLSLCaps.cpp |
diff --git a/src/gpu/glsl/GrGLSLCaps.cpp b/src/gpu/glsl/GrGLSLCaps.cpp |
index fef5ab377cc9fa667b637c4066db429a3963e8d0..449ceabd76915b896009bad1c76ee64dd850b846 100755 |
--- a/src/gpu/glsl/GrGLSLCaps.cpp |
+++ b/src/gpu/glsl/GrGLSLCaps.cpp |
@@ -18,9 +18,6 @@ |
fFBFetchNeedsCustomOutput = false; |
fBindlessTextureSupport = false; |
fUsesPrecisionModifiers = false; |
- fCanUseAnyFunctionInShader = true; |
- fForceHighPrecisionNDSTransform = false; |
- fVersionDeclString = nullptr; |
fFBFetchColorName = nullptr; |
fFBFetchExtensionString = nullptr; |
fAdvBlendEqInteraction = kNotSupported_AdvBlendEqInteraction; |
@@ -47,9 +44,6 @@ |
r.appendf("Drops tile on zero divide: %s\n", (fDropsTileOnZeroDivide ? "YES" : "NO")); |
r.appendf("Bindless texture support: %s\n", (fBindlessTextureSupport ? "YES" : "NO")); |
r.appendf("Uses precision modifiers: %s\n", (fUsesPrecisionModifiers ? "YES" : "NO")); |
- r.appendf("Can Use any() function: %s\n", (fCanUseAnyFunctionInShader ? "YES" : "NO")); |
- r.appendf("Force high precision on NDS transform: %s\n", (fForceHighPrecisionNDSTransform ? |
- "YES" : "NO")); |
r.appendf("Advanced blend equation interaction: %s\n", |
kAdvBlendEqInteractionStr[fAdvBlendEqInteraction]); |
return r; |