Set preallocated TextBatch geometries to 4 rather than 32

Review URL: https://codereview.chromium.org/1256843003
diff --git a/src/gpu/GrAtlasTextContext.cpp b/src/gpu/GrAtlasTextContext.cpp
index e20ca4b..91527ab 100644
--- a/src/gpu/GrAtlasTextContext.cpp
+++ b/src/gpu/GrAtlasTextContext.cpp
@@ -1773,7 +1773,7 @@
     }
 
     // The minimum number of Geometry we will try to allocate.
-    static const int kMinAllocated = 32;
+    static const int kMinAllocated = 4;
 
     // Total number of Geometry this Batch owns
     int instanceCount() const { return fInstanceCount; }