Searched refs:fMaxVertices (Results 1 – 8 of 8) sorted by relevance
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()[all …]
40 fMaxVertices = 0; in GrDistanceFieldTextContext()103 fMaxVertices = 0; in flushGlyphs()211 if (fCurrTexture != texture || fCurrVertex + 4 > fMaxVertices) { in drawPackedGlyph()220 fMaxVertices = kMinRequestedVerts; in drawPackedGlyph()223 bool flush = fDrawTarget->geometryHints(&fMaxVertices, NULL); in drawPackedGlyph()230 fMaxVertices = kDefaultRequestedVerts; in drawPackedGlyph()232 fDrawTarget->geometryHints(&fMaxVertices, NULL); in drawPackedGlyph()235 if (fMaxVertices < kMinRequestedVerts) { in drawPackedGlyph()236 fMaxVertices = kDefaultRequestedVerts; in drawPackedGlyph()237 } else if (fMaxVertices > maxQuadVertices) { in drawPackedGlyph()[all …]
41 int32_t fMaxVertices; variable