Index: include/gpu/GrCaps.h |
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h |
index 9287556f009494ea8fbb642506962c81ef0de4ee..572b9caea7800e96119c93220e492a6f73ac1f80 100644 |
--- a/include/gpu/GrCaps.h |
+++ b/include/gpu/GrCaps.h |
@@ -62,7 +62,6 @@ public: |
bool pathRenderingSupport() const { return fPathRenderingSupport; } |
bool dstReadInShaderSupport() const { return fDstReadInShaderSupport; } |
bool dualSourceBlendingSupport() const { return fDualSourceBlendingSupport; } |
- bool mixedSamplesSupport() const { return fMixedSamplesSupport; } |
bool programmableSampleLocationsSupport() const { return fProgrammableSampleLocationsSupport; } |
/** |
@@ -93,7 +92,6 @@ protected: |
bool fPathRenderingSupport : 1; |
bool fDstReadInShaderSupport : 1; |
bool fDualSourceBlendingSupport : 1; |
- bool fMixedSamplesSupport : 1; |
bool fProgrammableSampleLocationsSupport : 1; |
bool fShaderPrecisionVaries; |
@@ -130,6 +128,7 @@ public: |
bool compressedTexSubImageSupport() const { return fCompressedTexSubImageSupport; } |
bool oversizedStencilSupport() const { return fOversizedStencilSupport; } |
bool textureBarrierSupport() const { return fTextureBarrierSupport; } |
+ bool mixedSamplesSupport() const { return fMixedSamplesSupport; } |
bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; } |
bool useDrawInsteadOfPartialRenderTargetWrite() const { |
@@ -247,6 +246,7 @@ protected: |
bool fCompressedTexSubImageSupport : 1; |
bool fOversizedStencilSupport : 1; |
bool fTextureBarrierSupport : 1; |
+ bool fMixedSamplesSupport : 1; |
bool fSupportsInstancedDraws : 1; |
bool fFullClearIsFree : 1; |
bool fMustClearUploadedBufferData : 1; |