Lines Matching defs:firstRow
50 copy_matrix(float *value, const float *m, unsigned firstRow, unsigned lastRow)
54 assert(firstRow < 4);
57 for (i = 0, row = firstRow; row <= lastRow; row++) {
66 copy_matrix_transposed(float *value, const float *m, unsigned firstRow, unsigned lastRow)
68 assert(firstRow < 4);
71 memcpy(value, &m[firstRow * 4],
72 (lastRow - firstRow + 1) * 4 * sizeof(GLfloat));
1282 const GLuint firstRow = (GLuint) state[2];
1288 if (firstRow == lastRow)
1289 sprintf(tmp, "row[%d]", firstRow);
1291 sprintf(tmp, "row[%d..%d]", firstRow, lastRow);