• Home
  • Raw
  • Download

Lines Matching refs:isRowMajor

168 		, isRowMajor			(false)  in BufferVarLayoutEntry()
181 bool isRowMajor; member
200 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") in operator <<()
376 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
377 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140BaseAlignment()
417 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd430BaseAlignment() local
418 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd430BaseAlignment()
492 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
493 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeReferenceLayout()
498 entry.isRowMajor = isRowMajor; in computeReferenceLayout()
541 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
542 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout()
554 entry.isRowMajor = isRowMajor; in computeReferenceLayout()
627 const bool isRowMajor = !!(combinedFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
628 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(elemBasicType) in computeReferenceLayout()
630 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout()
646 entry.isRowMajor = isRowMajor; in computeReferenceLayout()
735 …const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) :… in generateValue()
974 …rc (std::ostream& src, glu::DataType basicType, int matrixStride, bool isRowMajor, const void* val… in generateImmMatrixSrc() argument
989 …const deUint8* compPtr = (const deUint8*)valuePtr + (isRowMajor ? rowNdx*matrixStride + colNdx*com… in generateImmMatrixSrc()
1159 generateImmMatrixSrc(src, basicType, varLayout.matrixStride, varLayout.isRowMajor, valuePtr); in generateCompareSrc()
1242 generateImmMatrixSrc(src, basicType, varLayout.matrixStride, varLayout.isRowMajor, valuePtr); in generateWriteSrc()
1454 entry.isRowMajor = returnValues[8] != 0; in getGLBufferLayout()
1522 …deUint8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*c… in copyBufferVarData()
1524 …const deUint8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + col… in copyBufferVarData()
1733 …deUint8* resCompPtr = resElemPtr + (resEntry.isRowMajor ? rowNdx*resEntry.matrixStride + colNdx*c… in compareBufferVarData()
1735 …const deUint8* refCompPtr = refElemPtr + (refEntry.isRowMajor ? rowNdx*refEntry.matrixStride + col… in compareBufferVarData()
1751 …generateImmMatrixSrc(expected, refEntry.type, refEntry.matrixStride, refEntry.isRowMajor, refElemP… in compareBufferVarData()
1752 … generateImmMatrixSrc(got, resEntry.type, resEntry.matrixStride, resEntry.isRowMajor, resElemPtr); in compareBufferVarData()
2349 refEntry.isRowMajor != cmpEntry.isRowMajor) in compareStdBlocks()
2419 refEntry.isRowMajor != cmpEntry.isRowMajor) in compareSharedBlocks()
2553 …const int numVecs = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumRows(var.type) : g… in checkLayoutBounds()
2554 …const int numComps = isMatrix ? (var.isRowMajor ? glu::getDataTypeMatrixNumColumns(var.type) … in checkLayoutBounds()