Lines Matching defs:c3
3417 static bool isEdgeTripletComponent (int c1, int c2, int c3, int renderTargetDifference)
3421 const int d2 = c3 - c2;
3427 static bool isEdgeTriplet (const tcu::RGBA& c1, const tcu::RGBA& c2, const tcu::RGBA& c3, const tcu::IVec3& renderTargetThreshold)
3433 const bool b3 = isBlack(c3);
3451 return isEdgeTripletComponent(c1.getRed(), c2.getRed(), c3.getRed(), renderTargetThreshold.x()) ||
3452 isEdgeTripletComponent(c1.getGreen(), c2.getGreen(), c3.getGreen(), renderTargetThreshold.y()) ||
3453 isEdgeTripletComponent(c1.getBlue(), c2.getBlue(), c3.getBlue(), renderTargetThreshold.z());
3468 const tcu::RGBA c3 = ref.getPixel(x+1, y+dy);
3469 if (isEdgeTriplet(c1, c2, c3, renderTargetThreshold))
3479 const tcu::RGBA c3 = ref.getPixel(x+dx, y+1);
3480 if (isEdgeTriplet(c1, c2, c3, renderTargetThreshold))