• Home
  • Raw
  • Download

Lines Matching refs:isRowMajor

212 …TYPE_LAST), size(0), blockNdx(-1), offset(-1), arrayStride(-1), matrixStride(-1), isRowMajor(false)  in UniformLayoutEntry()
223 bool isRowMajor; member
231 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") << " }"; in operator <<()
390 bool isRowMajor = !!(type.getFlags() & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
392isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) : glu::getDataTypeMatrixNumRows(basicType… in computeStd140BaseAlignment()
455 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
457isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) : glu::getDataTypeMatrixNumRows(basicType… in computeStd140Layout()
459isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) : glu::getDataTypeMatrixNumColumns(basicType… in computeStd140Layout()
464 entry.isRowMajor = isRowMajor; in computeStd140Layout()
505 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
506 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(elemBasicType) : in computeStd140Layout()
508 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) : in computeStd140Layout()
520 entry.isRowMajor = isRowMajor; in computeStd140Layout()
601 int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : in generateValue()
880 …const deUint8* compPtr = elemPtr + (entry.isRowMajor ? rowNdx * entry.matrixStride + colNdx * comp… in generateValueSrc()
1206 entry.isRowMajor = rowMajorFlags[uniformNdx] != GL_FALSE; in getGLUniformLayout()
1239 dstElemPtr + (dstEntry.isRowMajor ? rowNdx * dstEntry.matrixStride + colNdx * compSize : in copyUniformData()
1242 srcElemPtr + (srcEntry.isRowMajor ? rowNdx * srcEntry.matrixStride + colNdx * compSize : in copyUniformData()
1590 refEntry.matrixStride != cmpEntry.matrixStride || refEntry.isRowMajor != cmpEntry.isRowMajor) in compareStd140Blocks()
1596 << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n" in compareStd140Blocks()
1600 << ", row major = " << (cmpEntry.isRowMajor ? "true" : "false") << TestLog::EndMessage; in compareStd140Blocks()
1669 refEntry.isRowMajor != cmpEntry.isRowMajor) in compareSharedBlocks()
1673 << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n" in compareSharedBlocks()
1675 << ", row major = " << (cmpEntry.isRowMajor ? "true" : "false") << TestLog::EndMessage; in compareSharedBlocks()
1797 int numVecs = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumRows(uniform.type) : in checkLayoutBounds()
1800 int numComps = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumColumns(uniform.type) : in checkLayoutBounds()