Lines Matching refs:logStash

661 													   VerifyTriangleGroupInterpolationLogStash&	logStash,  in verifyTriangleGroupInterpolationWithInterpolator()  argument
677logStash.messages.push_back(std::string("Verifying rasterization result. Native format is RGB" + d… in verifyTriangleGroupInterpolationWithInterpolator()
679logStash.messages.push_back(std::string("Warning! More than 8 bits in a color channel, this may pr… in verifyTriangleGroupInterpolationWithInterpolator()
685logStash.messages.push_back(std::string("Invalid subpixel count (" + de::toString(subPixelBits) + … in verifyTriangleGroupInterpolationWithInterpolator()
691logStash.messages.push_back(std::string("Subpixel count is greater than 16 (" + de::toString(subPi… in verifyTriangleGroupInterpolationWithInterpolator()
781 logStash.messages.push_back(str.str()); in verifyTriangleGroupInterpolationWithInterpolator()
842 logStash.messages.push_back(str.str()); in verifyTriangleGroupInterpolationWithInterpolator()
853logStash.messages.push_back(std::string("Omitted " + de::toString(errorCount - errorFloodThreshold… in verifyTriangleGroupInterpolationWithInterpolator()
855 logStash.success = (invalidPixels == 0); in verifyTriangleGroupInterpolationWithInterpolator()
856 logStash.invalidPixels = invalidPixels; in verifyTriangleGroupInterpolationWithInterpolator()
859 if (!logStash.success) in verifyTriangleGroupInterpolationWithInterpolator()
860 logStash.errorMask = errorMask; in verifyTriangleGroupInterpolationWithInterpolator()
862 return logStash.success; in verifyTriangleGroupInterpolationWithInterpolator()
915 VerifyTriangleGroupRasterizationLogStash* logStash, in verifyMultisampleLineGroupRasterization() argument
1072 if (logStash != DE_NULL) in verifyMultisampleLineGroupRasterization()
1074logStash->messages.push_back("Rasterization clipping mode: " + std::string(clipMode == CLIPMODE_US… in verifyMultisampleLineGroupRasterization()
1075logStash->messages.push_back("Rasterization line draw strictness mode: " + std::string(strictMode … in verifyMultisampleLineGroupRasterization()
1078 …asterization(surface, triangleScene, args, log, scene.verificationMode, logStash, vulkanLinesTest); in verifyMultisampleLineGroupRasterization()
1084 VerifyTriangleGroupInterpolationLogStash& logStash, in verifyMultisampleLineGroupInterpolationInternal() argument
1169 logStash.messages.push_back("Verify using line interpolator"); in verifyMultisampleLineGroupInterpolationInternal()
1170 …return verifyTriangleGroupInterpolationWithInterpolator(surface, triangleScene, args, logStash, Mu… in verifyMultisampleLineGroupInterpolationInternal()
1181 logStash.messages.push_back("Verify using triangle interpolator"); in verifyMultisampleLineGroupInterpolationInternal()
1182 …if (!verifyTriangleGroupInterpolationWithInterpolator(surface, triangleScene, args, logStash, Tria… in verifyMultisampleLineGroupInterpolationInternal()
1184 logStash.messages.push_back("Verify using line interpolator"); in verifyMultisampleLineGroupInterpolationInternal()
1185 …return verifyTriangleGroupInterpolationWithInterpolator(surface, triangleScene, args, logStash, Mu… in verifyMultisampleLineGroupInterpolationInternal()
1191 …const tcu::Surface& surface, tcu::TestLog& log, VerifyTriangleGroupInterpolationLogStash& logStash) in logTriangleGroupnterpolationStash() argument
1196 for (size_t msgNdx = 0; msgNdx < logStash.messages.size(); ++msgNdx) in logTriangleGroupnterpolationStash()
1197 log << tcu::TestLog::Message << logStash.messages[msgNdx] << tcu::TestLog::EndMessage; in logTriangleGroupnterpolationStash()
1200 if (!logStash.success) in logTriangleGroupnterpolationStash()
1202 …log << tcu::TestLog::Message << logStash.invalidPixels << " invalid pixel(s) found." << tcu::TestL… in logTriangleGroupnterpolationStash()
1205 << tcu::TestLog::Image("ErrorMask", "ErrorMask", logStash.errorMask) in logTriangleGroupnterpolationStash()
2636 …const tcu::Surface& surface, tcu::TestLog& log, VerifyTriangleGroupRasterizationLogStash& logStash) in logTriangleGroupRasterizationStash() argument
2641 for (size_t msgNdx = 0; msgNdx < logStash.messages.size(); ++msgNdx) in logTriangleGroupRasterizationStash()
2642 log << tcu::TestLog::Message << logStash.messages[msgNdx] << tcu::TestLog::EndMessage; in logTriangleGroupRasterizationStash()
2644 if (!logStash.result) in logTriangleGroupRasterizationStash()
2647 << logStash.missingPixels << " missing pixels. (Marked with purple)\n\t" in logTriangleGroupRasterizationStash()
2648 << logStash.unexpectedPixels << " incorrectly filled pixels. (Marked with red)\n\t" in logTriangleGroupRasterizationStash()
2653 << tcu::TestLog::Image("ErrorMask", "ErrorMask", logStash.errorMask) in logTriangleGroupRasterizationStash()
2665 …& log, VerificationMode mode, VerifyTriangleGroupRasterizationLogStash* logStash, const bool vulka… in verifyTriangleGroupRasterization() argument
2858 …sterizationLogStash* tempLogStash = (logStash == DE_NULL) ? new VerifyTriangleGroupRasterizationLo… in verifyTriangleGroupRasterization()
2865 if (logStash == DE_NULL) in verifyTriangleGroupRasterization()
2950 VerifyTriangleGroupInterpolationLogStash logStash; in verifyTriangleGroupInterpolation() local
2951 … verifyTriangleGroupInterpolationWithInterpolator(surface, scene, args, logStash, TriangleInterpol… in verifyTriangleGroupInterpolation()
2953 logTriangleGroupnterpolationStash(surface, log, logStash); in verifyTriangleGroupInterpolation()