Lines Matching defs:firstRow
49 copy_matrix(float *value, const float *m, unsigned firstRow, unsigned lastRow)
53 assert(firstRow < 4);
56 for (i = 0, row = firstRow; row <= lastRow; row++) {
65 copy_matrix_transposed(float *value, const float *m, unsigned firstRow, unsigned lastRow)
67 assert(firstRow < 4);
70 memcpy(value, &m[firstRow * 4],
71 (lastRow - firstRow + 1) * 4 * sizeof(GLfloat));
1296 const GLuint firstRow = (GLuint) state[2];
1302 if (firstRow == lastRow)
1303 sprintf(tmp, "row[%d]", firstRow);
1305 sprintf(tmp, "row[%d..%d]", firstRow, lastRow);