Home | History | Annotate | Download | only in functional

Lines Matching refs:isMatrix

739 	const bool			isMatrix		= glu::isDataTypeMatrix(entry.type);
740 const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : glu::getDataTypeMatrixNumColumns(entry.type)) : 1;
758 deUint8* const vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0);
1157 const bool isMatrix = glu::isDataTypeMatrix(basicType);
1163 if (isMatrix)
1241 const bool isMatrix = glu::isDataTypeMatrix(basicType);
1246 if (isMatrix)
1480 const bool isMatrix = glu::isDataTypeMatrix(dstEntry.type);
1504 if (isMatrix)
1687 const bool isMatrix = glu::isDataTypeMatrix(resEntry.type);
1714 if (isMatrix)
2543 const bool isMatrix = glu::isDataTypeMatrix(var.type);
2544 const int numVecs = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumRows(var.type) : glu::getDataTypeMatrixNumColumns(var.type)) : 1;
2545 const int numComps = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumColumns(var.type) : glu::getDataTypeMatrixNumRows(var.type)) : glu::getDataTypeScalarSize(var.type);