Home | History | Annotate | Download | only in glshared

Lines Matching defs:c2

3417 static bool isEdgeTripletComponent (int c1, int c2, int c3, int renderTargetDifference)
3420 const int d1 = c2 - c1;
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)
3432 const bool b2 = isBlack(c2);
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());
3467 const tcu::RGBA c2 = ref.getPixel(x, y+dy);
3469 if (isEdgeTriplet(c1, c2, c3, renderTargetThreshold))
3478 const tcu::RGBA c2 = ref.getPixel(x+dx, y);
3480 if (isEdgeTriplet(c1, c2, c3, renderTargetThreshold))