Home | History | Annotate | Download | only in functional

Lines Matching defs:numComps

243 	int					numComps;
247 , numComps (numComps_)
254 DE_ASSERT(de::inRange(v.numComps, 1, 4));
255 if (v.numComps == 1) return str << v.v[0];
256 else if (v.numComps == 2) return str << v.v.toWidth<2>();
257 else if (v.numComps == 3) return str << v.v.toWidth<3>();
272 const int numComps = glu::getDataTypeFloatScalars(dataType);
276 log << TestLog::Message << "Expecting " << LogVecComps(reference, numComps) << " with threshold " << LogVecComps(threshold, numComps) << TestLog::EndMessage;
288 log << TestLog::Message << "FAIL: got " << LogVecComps(resDerivate, numComps)
289 << ", diff = " << LogVecComps(tcu::abs(reference - resDerivate), numComps)