Lines Matching defs:refEntry
1576 const UniformLayoutEntry& refEntry = refLayout.uniforms[*ndxIter];
1577 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1581 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
1588 if (refEntry.type != cmpEntry.type || refEntry.size != cmpEntry.size ||
1589 refEntry.offset != cmpEntry.offset || refEntry.arrayStride != cmpEntry.arrayStride ||
1590 refEntry.matrixStride != cmpEntry.matrixStride || refEntry.isRowMajor != cmpEntry.isRowMajor)
1592 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1593 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size
1594 << ", offset = " << refEntry.offset << ", array stride = " << refEntry.arrayStride
1595 << ", matrix stride = " << refEntry.matrixStride
1596 << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1656 const UniformLayoutEntry& refEntry = refLayout.uniforms[*ndxIter];
1657 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1661 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
1668 if (refEntry.type != cmpEntry.type || refEntry.size != cmpEntry.size ||
1669 refEntry.isRowMajor != cmpEntry.isRowMajor)
1671 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1672 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size
1673 << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1725 const UniformLayoutEntry& refEntry = refLayout.uniforms[refEntryNdx];
1728 if (refEntry.type != cmpEntry.type)
1730 log << TestLog::Message << "Error: Uniform type mismatch in '" << refEntry.name << "':\n"
1731 << " expected: " << glu::getDataTypeName(refEntry.type) << "\n"