Index: src/gpu/gl/GrGLCaps.h |
diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h |
index d81e34b35e8c62ba402cbd0d6da419c60c939c55..53587e1ad6da9bcd6866e4bc10517501e052efd2 100644 |
--- a/src/gpu/gl/GrGLCaps.h |
+++ b/src/gpu/gl/GrGLCaps.h |
@@ -178,6 +178,8 @@ public: |
const char* fbFetchExtensionString() const { return fFBFetchExtensionString; } |
+ bool fbMixedSamplesSupport() const { return fFBMixedSamplesSupport; } |
+ |
InvalidateFBType invalidateFBType() const { return fInvalidateFBType; } |
/// What type of buffer mapping is supported? |
@@ -389,6 +391,7 @@ private: |
bool fDropsTileOnZeroDivide : 1; |
bool fFBFetchSupport : 1; |
bool fFBFetchNeedsCustomOutput : 1; |
+ bool fFBMixedSamplesSupport : 1; |
const char* fFBFetchColorName; |
const char* fFBFetchExtensionString; |