Searched defs:row_verts (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp418 int row_verts = pShadingStream->GetDict()->GetInteger("VerticesPerRow"); local
419 if (row_verts < 2) {
426 CPDF_MeshVertex* vertex = FX_Alloc(CPDF_MeshVertex, row_verts * 2);
427 if (!stream.GetVertexRow(vertex, row_verts, pObject2Bitmap)) {
433 CPDF_MeshVertex* last_row = vertex + last_index * row_verts;
434 CPDF_MeshVertex* this_row = vertex + (1 - last_index) * row_verts;
435 if (!stream.GetVertexRow(this_row, row_verts, pObject2Bitmap)) {
440 for (int i = 1; i < row_verts; i ++) {

Completed in 314 milliseconds