Lines Matching defs:match
947 declarations.push_back(" vec2 ones;"); // Note: we split the vec4 into two vec2s to match CPU-side alignment.
1665 const bool match = ((resultColorRGB == referenceColorRGB) && alphaMatch);
1668 errorMask.setPixel((match ? green : red), 0, 0);
1670 return match;
5641 // The viewport and scissor counts must match in the static part, which will be used by the static pipeline.
6208 bool match;
6222 match = tcu::boolAll(tcu::lessThan(tcu::absDiff(colorPixel, expectedPixel), kUnormColorThreshold));
6229 match = (colorPixel == expectedPixel);
6232 colorErrorAccess.setPixel((match ? kGood : kBad), x, y);
6233 if (!match)
6240 match = de::inRange(depthPixel, minDepth, maxDepth);
6241 depthErrorAccess.setPixel((match ? kGood : kBad), x, y);
6242 if (!match)
6246 match = (stencilPixel == m_testConfig.expectedStencil);
6247 stencilErrorAccess.setPixel((match ? kGood : kBad), x, y);
6248 if (!match)
6381 msg << "Fragment shader invocation count does not match expected value: found " << fragCounter << " and expected " << expectedValue;
7969 config.meshParams[0].color = tcu::Vec4(48.0f, 0.0f, 0.0f, 1.0f); // Distinct value, does not match any coverage mask.
8001 config.meshParams[0].color = tcu::Vec4(48.0f, 0.0f, 0.0f, 1.0f); // Distinct value, does not match any coverage mask.
8019 tcu::Vec4 partialCovFactor; // This will match the expected coverage proportion. See below.