Lines Matching refs:isRowMajor

242 		, isRowMajor	(false)
253 bool isRowMajor;
264 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false")
424 bool isRowMajor = !!(type.getFlags() & LAYOUT_ROW_MAJOR);
425 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
487 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR);
488 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
490 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType)
496 entry.isRowMajor = isRowMajor;
537 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR);
538 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(elemBasicType)
540 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType)
552 entry.isRowMajor = isRowMajor;
629 int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : glu::getDataTypeMatrixNumColumns(entry.type)) : 1;
965 const deUint8* compPtr = elemPtr + (entry.isRowMajor ? rowNdx*entry.matrixStride + colNdx*compSize
1261 entry.isRowMajor = rowMajorFlags[uniformNdx] != GL_FALSE;
1292 deUint8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*compSize
1294 const deUint8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + colNdx*compSize
1640 refEntry.isRowMajor != cmpEntry.isRowMajor)
1643 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size << ", offset = " << refEntry.offset << ", array stride = "<< refEntry.arrayStride << ", matrix stride = " << refEntry.matrixStride << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1644 << " got: type = " << glu::getDataTypeName(cmpEntry.type) << ", size = " << cmpEntry.size << ", offset = " << cmpEntry.offset << ", array stride = "<< cmpEntry.arrayStride << ", matrix stride = " << cmpEntry.matrixStride << ", row major = " << (cmpEntry.isRowMajor ? "true" : "false")
1714 refEntry.isRowMajor != cmpEntry.isRowMajor)
1717 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1718 << " got: type = " << glu::getDataTypeName(cmpEntry.type) << ", size = " << cmpEntry.size << ", row major = " << (cmpEntry.isRowMajor ? "true" : "false")
1837 int numVecs = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumRows(uniform.type) : glu::getDataTypeMatrixNumColumns(uniform.type)) : 1;
1838 int numComps = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumColumns(uniform.type) : glu::getDataTypeMatrixNumRows(uniform.type)) : glu::getDataTypeScalarSize(uniform.type);