Lines Matching refs:fMaxVertices
39 fMaxVertices = 0; in GrBitmapTextContext()
106 fMaxVertices = 0; in flushGlyphs()
219 if (fCurrTexture != texture || fCurrVertex + 4 > fMaxVertices) { in drawPackedGlyph()
228 fMaxVertices = kMinRequestedVerts; in drawPackedGlyph()
231 bool flush = fDrawTarget->geometryHints(&fMaxVertices, NULL); in drawPackedGlyph()
238 fMaxVertices = kDefaultRequestedVerts; in drawPackedGlyph()
240 fDrawTarget->geometryHints(&fMaxVertices, NULL); in drawPackedGlyph()
243 if (fMaxVertices < kMinRequestedVerts) { in drawPackedGlyph()
244 fMaxVertices = kDefaultRequestedVerts; in drawPackedGlyph()
245 } else if (fMaxVertices > maxQuadVertices) { in drawPackedGlyph()
247 fMaxVertices = maxQuadVertices; in drawPackedGlyph()
249 bool success = fDrawTarget->reserveVertexAndIndexSpace(fMaxVertices, in drawPackedGlyph()