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)
1494 const bool isMatrix = glu::isDataTypeMatrix(dstEntry.type);
1518 if (isMatrix)
1701 const bool isMatrix = glu::isDataTypeMatrix(resEntry.type);
1728 if (isMatrix)
2557 const bool isMatrix = glu::isDataTypeMatrix(var.type);
2558 const int numVecs = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumRows(var.type) : glu::getDataTypeMatrixNumColumns(var.type)) : 1;
2559 const int numComps = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumColumns(var.type) : glu::getDataTypeMatrixNumRows(var.type)) : glu::getDataTypeScalarSize(var.type);