Lines Matching defs:strip
96 unsigned strip, i;
98 /* indice size * number of strips * number of indices in strip */
102 for (strip = 0; strip < nr_verts_in_row - 1; strip += 2) {
104 unsigned idx = i + strip * nr_indices_in_strip;
105 unsigned idx2 = (nr_indices_in_strip - i - 2) + (strip +
107 indices[idx + 1] = i/2 + strip*nr_verts_in_row;
108 indices[idx] = i/2 + (strip + 1)*nr_verts_in_row;
109 if (strip + 1 < nr_verts_in_row - 1) {
110 indices[idx2] = i/2 + (strip + 1)*nr_verts_in_row;
111 indices[idx2 + 1] = i/2 + (strip + 2)*nr_verts_in_row;