Lines Matching refs:result

356 									const tcu::ConstPixelBufferAccess&	result,
372 for (int y = 0; y < result.getHeight(); y++)
374 for (int x = 0; x < result.getWidth(); x++)
376 if (isSkippedPixel(result, x, y))
379 const tcu::Vec4 resDerivate = readDerivate(result, scale, bias, x, y);
423 const tcu::ConstPixelBufferAccess& result,
433 DE_ASSERT(result.getWidth() == errorMask.getWidth());
434 DE_ASSERT(result.getHeight() == errorMask.getHeight());
451 for (int y = 0; y < result.getHeight(); ++y)
452 for (int x = 0; x < result.getWidth(); ++x)
454 if (isSkippedPixel(result, x, y))
461 const tcu::Vec4 resultDerivative = readDerivate(result, derivScale, derivBias, x, y);
517 << "\tGot pixel value " << result.getPixelInt(x, y) << "\n"
624 virtual bool verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask) = 0;
862 virtual bool verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask);
877 bool ConstantDerivateCaseInstance::verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask)
882 return verifyConstantDerivate(m_context.getTestContext().getLog(), result, errorMask, m_definitions.dataType,
1007 virtual bool verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask);
1022 bool LinearDerivateCaseInstance::verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask)
1031 const float div = isX ? float(result.getWidth()) : float(result.getHeight());
1043 << "Verifying result image.\n"
1047 // short circuit if result is strictly within the normal value error bounds.
1049 if (verifyConstantDerivate(m_context.getTestContext().getLog(), result, errorMask, m_definitions.dataType,
1055 << "No incorrect derivatives found, result valid."
1066 << "Initial verification failed, verifying image by calculating accurate error bounds for each result pixel.\n"
1067 << "\tVerifying each result derivative is within its range of legal result values."
1082 return reverifyConstantDerivateWithFlushRelaxations(m_context.getTestContext().getLog(), result, errorMask,
1091 const float w = float(result.getWidth());
1092 const float h = float(result.getHeight());
1101 return verifyConstantDerivate(m_context.getTestContext().getLog(), result, errorMask, m_definitions.dataType,
1258 virtual bool verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask);
1318 bool TextureDerivateCaseInstance::verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask)
1321 if (result.getWidth() < 2 || result.getHeight() < 2)
1324 tcu::ConstPixelBufferAccess compareArea = tcu::getSubregion(result, 1, 1, result.getWidth()-2, result.getHeight()-2);
1328 const float w = float(result.getWidth());
1329 const float h = float(result.getHeight());
1348 << "Verifying result image.\n"
1352 // short circuit if result is strictly within the normal value error bounds.
1360 << "No incorrect derivatives found, result valid."
1371 << "Initial verification failed, verifying image by calculating accurate error bounds for each result pixel.\n"
1372 << "\tVerifying each result derivative is within its range of legal result values."
2045 de::MovePtr<tcu::TestCaseGroup> textureGroup (new tcu::TestCaseGroup(m_testCtx, "texture", "Derivate of texture lookup result"));