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