• Home
  • Raw
  • Download

Lines Matching refs:resourceList

902 …bool										verifyResourceList			(const std::vector<std::string>& resourceList, const std::vecto…
903 …bool verifyResourceIndexQuery (const std::vector<std::string>& resourceList, const std::v…
969 std::vector<std::string> resourceList; in iterate() local
972 queryResourceList(resourceList, program.getProgram()); in iterate()
977 if (!verifyResourceList(resourceList, expectedResources)) in iterate()
982 if (!verifyResourceIndexQuery(resourceList, expectedResources, program.getProgram())) in iterate()
986 if (!verifyMaxNameLength(resourceList, program.getProgram())) in iterate()
1027 bool ResourceListTestCase::verifyResourceList (const std::vector<std::string>& resourceList, const … in verifyResourceList() argument
1035 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyResourceList()
1040 if (resourceList[ndx] != getDummyZeroUniformName()) in verifyResourceList()
1041 …m_testCtx.getLog() << tcu::TestLog::Message << "\t" << ndx << ": " << resourceList[ndx] << tcu::Te… in verifyResourceList()
1053 if (!de::contains(resourceList.begin(), resourceList.end(), expectedResources[ndx])) in verifyResourceList()
1060 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyResourceList()
1062 if (!de::contains(expectedResources.begin(), expectedResources.end(), resourceList[ndx])) in verifyResourceList()
1067 if (deStringBeginsWith(resourceList[ndx].c_str(), "gl_") == DE_FALSE && in verifyResourceList()
1068 resourceList[ndx] != getDummyZeroUniformName()) in verifyResourceList()
1070 …ssage << "Error, resource list contains unexpected resource name " << resourceList[ndx] << tcu::Te… in verifyResourceList()
1074 …stLog::Message << "Note, resource list contains unknown built-in " << resourceList[ndx] << ". This… in verifyResourceList()
1081 bool ResourceListTestCase::verifyResourceIndexQuery (const std::vector<std::string>& resourceList, … in verifyResourceIndexQuery() argument
1099 else if ((int)index >= (int)resourceList.size()) in verifyResourceIndexQuery()
1104 else if (resourceList[index] != referenceResources[ndx]) in verifyResourceIndexQuery()
1106 … << "\" got index (index = " << index << ") of another resource (" << resourceList[index] << ")." … in verifyResourceIndexQuery()
1128 else if ((int)index >= (int)resourceList.size()) in verifyResourceIndexQuery()
1133 else if (resourceList[index] != queryString + "[0]") in verifyResourceIndexQuery()
1135 …< "\" got index (index = " << index << ") of another resource (\"" << resourceList[index] << "\").… in verifyResourceIndexQuery()
1145 bool ResourceListTestCase::verifyMaxNameLength (const std::vector<std::string>& resourceList, glw::… in verifyMaxNameLength() argument
1155 for (int ndx = 0; ndx < (int)resourceList.size(); ++ndx) in verifyMaxNameLength()
1156 expectedMaxNameLength = de::max(expectedMaxNameLength, (int)resourceList[ndx].size() + 1); in verifyMaxNameLength()
3129 std::vector<std::string> resourceList; in iterate() local
3132 queryResourceList(resourceList, program.getProgram()); in iterate()
3137 if (!verifyResourceList(resourceList, expectedResources)) in iterate()
3142 if (!verifyResourceIndexQuery(resourceList, expectedResources, program.getProgram())) in iterate()
3146 if (!verifyMaxNameLength(resourceList, program.getProgram())) in iterate()