Index: src/gpu/gl/GrGLCaps.h |
diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h |
index 58bf98c2d0b700570128cab2e0bf4db105678f83..0cb353aa9f78703654d17c3731027054b5e36a5a 100644 |
--- a/src/gpu/gl/GrGLCaps.h |
+++ b/src/gpu/gl/GrGLCaps.h |
@@ -296,9 +296,6 @@ public: |
/// Is there support for ES2 compatability? |
bool ES2CompatibilitySupport() const { return fES2CompatibilitySupport; } |
- /// Can we call glDisable(GL_MULTISAMPLE)? |
- bool multisampleDisableSupport() const { return fMultisampleDisableSupport; } |
- |
/// Is there support for glDraw*Indirect? Note that the baseInstance fields of indirect draw |
/// commands cannot be used unless we have base instance support. |
bool drawIndirectSupport() const { return fDrawIndirectSupport; } |
@@ -398,7 +395,6 @@ private: |
bool fDirectStateAccessSupport : 1; |
bool fDebugSupport : 1; |
bool fES2CompatibilitySupport : 1; |
- bool fMultisampleDisableSupport : 1; |
bool fDrawIndirectSupport : 1; |
bool fMultiDrawIndirectSupport : 1; |
bool fBaseInstanceSupport : 1; |