Lines Matching refs:xformMatrix
482 if (oglc->xformMatrix == NULL) {
484 oglc->xformMatrix = (GLdouble *)malloc(arrsize);
485 memset(oglc->xformMatrix, 0, arrsize);
486 oglc->xformMatrix[10] = 1.0;
487 oglc->xformMatrix[15] = 1.0;
491 oglc->xformMatrix[0] = m00;
492 oglc->xformMatrix[1] = m10;
493 oglc->xformMatrix[4] = m01;
494 oglc->xformMatrix[5] = m11;
495 oglc->xformMatrix[12] = m02;
496 oglc->xformMatrix[13] = m12;
499 oglc->xformMatrix[0], oglc->xformMatrix[4],
500 oglc->xformMatrix[12]);
502 oglc->xformMatrix[1], oglc->xformMatrix[5],
503 oglc->xformMatrix[13]);
506 j2d_glLoadMatrixd(oglc->xformMatrix);
591 if (oglc->xformMatrix != NULL) {
592 free(oglc->xformMatrix);