Home | History | Annotate | Download | only in glshared

Lines Matching refs:refEntry

1623 			const UniformLayoutEntry&	refEntry	= refLayout.uniforms[*ndxIter];
1624 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1628 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
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)
1642 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1643 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size << ", offset = " << refEntry.offset << ", array stride = "<< refEntry.arrayStride << ", matrix stride = " << refEntry.matrixStride << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1700 const UniformLayoutEntry& refEntry = refLayout.uniforms[*ndxIter];
1701 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1705 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
1712 if (refEntry.type != cmpEntry.type ||
1713 refEntry.size != cmpEntry.size ||
1714 refEntry.isRowMajor != cmpEntry.isRowMajor)
1716 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1717 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1767 const UniformLayoutEntry& refEntry = refLayout.uniforms[refEntryNdx];
1770 if (refEntry.type != cmpEntry.type)
1772 log << TestLog::Message << "Error: Uniform type mismatch in '" << refEntry.name << "':\n"
1773 << " expected: " << glu::getDataTypeName(refEntry.type) << "\n"