Index: include/gpu/GrCaps.h |
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h |
index 9fe727c42540713786a825cdb59cb01136681bde..35e2c2ca302657a744cbb90af50afe8e08d66320 100644 |
--- a/include/gpu/GrCaps.h |
+++ b/include/gpu/GrCaps.h |
@@ -158,6 +158,7 @@ public: |
bool oversizedStencilSupport() const { return fOversizedStencilSupport; } |
bool textureBarrierSupport() const { return fTextureBarrierSupport; } |
bool sampleLocationsSupport() const { return fSampleLocationsSupport; } |
+ bool multisampleDisableSupport() const { return fMultisampleDisableSupport; } |
bool usesMixedSamples() const { return fUsesMixedSamples; } |
bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; } |
@@ -294,6 +295,7 @@ protected: |
bool fOversizedStencilSupport : 1; |
bool fTextureBarrierSupport : 1; |
bool fSampleLocationsSupport : 1; |
+ bool fMultisampleDisableSupport : 1; |
bool fUsesMixedSamples : 1; |
bool fSupportsInstancedDraws : 1; |
bool fFullClearIsFree : 1; |