Lines Matching defs:refEntry
1626 const UniformLayoutEntry& refEntry = refLayout.uniforms[*ndxIter];
1627 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1631 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
1638 if (refEntry.type != cmpEntry.type ||
1639 refEntry.size != cmpEntry.size ||
1640 refEntry.offset != cmpEntry.offset ||
1641 refEntry.arrayStride != cmpEntry.arrayStride ||
1642 refEntry.matrixStride != cmpEntry.matrixStride ||
1643 refEntry.isRowMajor != cmpEntry.isRowMajor)
1645 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1646 << " 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"
1703 const UniformLayoutEntry& refEntry = refLayout.uniforms[*ndxIter];
1704 int cmpEntryNdx = cmpLayout.getUniformIndex(refEntry.name.c_str());
1708 log << TestLog::Message << "Error: Uniform '" << refEntry.name << "' not found" << TestLog::EndMessage;
1715 if (refEntry.type != cmpEntry.type ||
1716 refEntry.size != cmpEntry.size ||
1717 refEntry.isRowMajor != cmpEntry.isRowMajor)
1719 log << TestLog::Message << "Error: Layout mismatch in '" << refEntry.name << "':\n"
1720 << " expected: type = " << glu::getDataTypeName(refEntry.type) << ", size = " << refEntry.size << ", row major = " << (refEntry.isRowMajor ? "true" : "false") << "\n"
1770 const UniformLayoutEntry& refEntry = refLayout.uniforms[refEntryNdx];
1773 if (refEntry.type != cmpEntry.type)
1775 log << TestLog::Message << "Error: Uniform type mismatch in '" << refEntry.name << "':\n"
1776 << " expected: " << glu::getDataTypeName(refEntry.type) << "\n"