Lines Matching refs:resEntry
1690 … refEntry, const BlockDataPtr& refBlockPtr, const BufferVarLayoutEntry& resEntry, const BlockDataP… in compareBufferVarData() argument
1692 DE_ASSERT(resEntry.arraySize <= refEntry.arraySize); in compareBufferVarData()
1693 DE_ASSERT(resEntry.topLevelArraySize <= refEntry.topLevelArraySize); in compareBufferVarData()
1695 DE_ASSERT(resEntry.type == refEntry.type); in compareBufferVarData()
1697 deUint8* const resBasePtr = (deUint8*)resBlockPtr.ptr + resEntry.offset; in compareBufferVarData()
1700 const int scalarSize = glu::getDataTypeScalarSize(resEntry.type); in compareBufferVarData()
1701 const bool isMatrix = glu::isDataTypeMatrix(resEntry.type); in compareBufferVarData()
1706 …const int resArraySize = resEntry.arraySize == 0 ? resBlockPtr.lastUnsizedArraySize : resEntry… in compareBufferVarData()
1707 const int resArrayStride = resEntry.arrayStride; in compareBufferVarData()
1708 …const int resTopLevelSize = resEntry.topLevelArraySize == 0 ? resBlockPtr.lastUnsizedArraySize… in compareBufferVarData()
1709 const int resTopLevelStride = resEntry.topLevelArrayStride; in compareBufferVarData()
1730 const int numRows = glu::getDataTypeMatrixNumRows(resEntry.type); in compareBufferVarData()
1731 const int numCols = glu::getDataTypeMatrixNumColumns(resEntry.type); in compareBufferVarData()
1738 …deUint8* resCompPtr = resElemPtr + (resEntry.isRowMajor ? rowNdx*resEntry.matrixStride + colNdx*c… in compareBufferVarData()
1739 : colNdx*resEntry.matrixStride + rowNdx*compSize); in compareBufferVarData()
1757 … generateImmMatrixSrc(got, resEntry.type, resEntry.matrixStride, resEntry.isRowMajor, resElemPtr); in compareBufferVarData()
1779 generateImmScalarVectorSrc(got, resEntry.type, resElemPtr); in compareBufferVarData()
1820 const BufferVarLayoutEntry& resEntry = resLayout.bufferVars[resVarNdx]; in compareData() local
1821 allOk = compareBufferVarData(log, refEntry, refBlockPtr, resEntry, resBlockPtr) && allOk; in compareData()