Lines Matching refs:used
482 // When the same UniformCollection is needed in several places, a SharedPtr is used instead.
753 // ARRAYUSAGE_ONLY_MIDDLE_INDEX: only middle index of each array is used in shader. If not given, use all indices.
766 // BOOLEANAPITYPE: type used to pass booleans to and from GL api. If none given, use float.
836 BasicUniformReportRef (const char* const name_, const int minS, const int maxS, const glu::DataType type_, const bool used)
837 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
838 BasicUniformReportRef (const char* const name_, const glu::DataType type_, const bool used)
839 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1368 log << TestLog::Message << "// FAILURE: " << uniform.name << " was used in shader, but has location -1" << TestLog::EndMessage;
2068 // \note Although this is only used in UniformApiTest::init, it needs to be defined here as it's used as a template argument.
2085 // Generate sets of UniformCollections that are used by several cases.