Home | History | Annotate | Download | only in glshared

Lines Matching refs:compSize

632 	const int		compSize		= sizeof(deUint32);
646 deUint8* compPtr = vecPtr + compSize*compNdx;
948 const int compSize = sizeof(deUint32);
965 const deUint8* compPtr = elemPtr + (entry.isRowMajor ? rowNdx*entry.matrixStride + colNdx*compSize
966 : colNdx*entry.matrixStride + rowNdx*compSize);
979 const deUint8* compPtr = elemPtr + scalarNdx*compSize;
1276 const int compSize = sizeof(deUint32);
1292 deUint8* dstCompPtr = dstElemPtr + (dstEntry.isRowMajor ? rowNdx*dstEntry.matrixStride + colNdx*compSize
1293 : colNdx*dstEntry.matrixStride + rowNdx*compSize);
1294 const deUint8* srcCompPtr = srcElemPtr + (srcEntry.isRowMajor ? rowNdx*srcEntry.matrixStride + colNdx*compSize
1295 : colNdx*srcEntry.matrixStride + rowNdx*compSize);
1296 deMemcpy(dstCompPtr, srcCompPtr, compSize);
1301 deMemcpy(dstElemPtr, srcElemPtr, scalarSize*compSize);
1840 const int compSize = sizeof(deUint32);
1841 int vecSize = numComps*compSize;