Home | History | Annotate | Download | only in glshared

Lines Matching refs:cmpEntry

1633 			const UniformLayoutEntry&	cmpEntry	= cmpLayout.uniforms[cmpEntryNdx];
1635 if (refEntry.type != cmpEntry.type ||
1636 refEntry.size != cmpEntry.size ||
1637 refEntry.offset != cmpEntry.offset ||
1638 refEntry.arrayStride != cmpEntry.arrayStride ||
1639 refEntry.matrixStride != cmpEntry.matrixStride ||
1640 refEntry.isRowMajor != cmpEntry.isRowMajor)
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")
1710 const UniformLayoutEntry& cmpEntry = cmpLayout.uniforms[cmpEntryNdx];
1712 if (refEntry.type != cmpEntry.type ||
1713 refEntry.size != cmpEntry.size ||
1714 refEntry.isRowMajor != cmpEntry.isRowMajor)
1718 << " got: type = " << glu::getDataTypeName(cmpEntry.type) << ", size = " << cmpEntry.size << ", row major = " << (cmpEntry.isRowMajor ? "true" : "false")
1757 const UniformLayoutEntry& cmpEntry = cmpLayout.uniforms[*ndxIter];
1758 int refEntryNdx = refLayout.getUniformIndex(cmpEntry.name.c_str());
1762 log << TestLog::Message << "Error: Uniform '" << cmpEntry.name << "' not found in reference layout" << TestLog::EndMessage;
1770 if (refEntry.type != cmpEntry.type)
1774 << " got: " << glu::getDataTypeName(cmpEntry.type)