Index: include/gpu/GrCaps.h |
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h |
index 1f5b11955bd65c82634742747f10e8e1af25235a..3ef8295e2b1f93576635a577b8b701b84b8b6b2c 100644 |
--- a/include/gpu/GrCaps.h |
+++ b/include/gpu/GrCaps.h |
@@ -247,9 +247,9 @@ public: |
return fDrawPathMasksToCompressedTextureSupport; |
} |
- size_t geometryBufferMapThreshold() const { |
- SkASSERT(fGeometryBufferMapThreshold >= 0); |
- return fGeometryBufferMapThreshold; |
+ size_t bufferMapThreshold() const { |
+ SkASSERT(fBufferMapThreshold >= 0); |
+ return fBufferMapThreshold; |
} |
bool supportsInstancedDraws() const { |
@@ -301,7 +301,7 @@ protected: |
GR_STATIC_ASSERT(kLast_GrBlendEquation < 32); |
uint32_t fMapBufferFlags; |
- int fGeometryBufferMapThreshold; |
+ int fBufferMapThreshold; |
int fMaxRenderTargetSize; |
int fMaxVertexAttributes; |