HomeSort by relevance Sort by last modified time
    Searched refs:errorMask (Results 1 - 25 of 34) sorted by null

1 2

  /external/deqp/framework/common/
tcuBilinearImageCompare.hpp 35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
tcuFuzzyImageCompare.hpp 44 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask);
tcuBilinearImageCompare.cpp 191 bool bilinearCompareRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold)
197 clear(errorMask, Vec4(0.0f, 1.0f, 0.0f, 1.0f));
209 errorMask.setPixel(Vec4(1.0f, 0.0f, 0.0f, 1.0f), x, y);
219 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold)
225 DE_ASSERT(reference.getWidth() == errorMask.getWidth() &&
226 reference.getHeight() == errorMask.getHeight() &&
227 reference.getDepth() == errorMask.getDepth());
230 return bilinearCompareRGBA8(reference, result, errorMask, threshold);
tcuImageCompare.cpp 91 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue)
110 tcu::clear(errorMask, okColor);
150 errorMask.setPixel(errorColor, x, y, z);
173 errorMask.setPixel(errorColor, x, y, z);
219 TextureLevel errorMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.getWidth(), reference.getHeight());
220 float difference = fuzzyCompare(params, reference, result, errorMask.getAccess());
229 fuzzyCompare(params, reference, result, errorMask.getAccess());
240 << TestLog::Image("ErrorMask", "Error mask", errorMask)
493 PixelBufferAccess errorMask = errorMaskStorage.getAccess()
    [all...]
tcuFuzzyImageCompare.cpp 273 float fuzzyCompare (const FuzzyCompareParams& params, const ConstPixelBufferAccess& ref, const ConstPixelBufferAccess& cmp, const PixelBufferAccess& errorMask)
276 DE_ASSERT(errorMask.getWidth() == ref.getWidth() && errorMask.getHeight() == ref.getHeight());
314 clear(errorMask, Vec4(0.0f, 1.0f, 0.0f, 1.0f));
340 errorMask.setPixel(Vec4(red*rF, (1.0f-red)*rF, 0.0f, 1.0f), x, y);
  /external/deqp/modules/gles2/functional/
es2fDitheringTests.cpp 282 Surface errorMask (viewportWid, viewportHei);
294 errorMask.setPixel(x, y, tcu::RGBA::red());
303 errorMask.setPixel(x, y, tcu::RGBA::green());
309 log << TestLog::Image("ColorChoiceErrorMask", "Error mask for color choices", errorMask);
396 Surface errorMask (viewportWid, viewportHei);
405 errorMask.setPixel(x, y, tcu::RGBA::red());
414 errorMask.setPixel(x, y, tcu::RGBA::green());
420 log << TestLog::Image("ColorChoiceErrorMask", "Error mask for color choices", errorMask);
es2fDefaultVertexAttributeTests.cpp 423 tcu::Surface errorMask (RENDER_SIZE, RENDER_SIZE);
432 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toIVec());
453 errorMask.setPixel(x, y, tcu::RGBA::red());
467 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask)
es2fShaderInvarianceTests.cpp 361 tcu::Surface errorMask (m_renderSize, m_renderSize);
363 tcu::clear(errorMask.getAccess(), okColor);
372 errorMask.setPixel(x, y, errColor);
384 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDitheringTests.cpp 282 Surface errorMask (viewportWid, viewportHei);
294 errorMask.setPixel(x, y, tcu::RGBA::red());
303 errorMask.setPixel(x, y, tcu::RGBA::green());
309 log << TestLog::Image("ColorChoiceErrorMask", "Error mask for color choices", errorMask);
394 Surface errorMask (viewportWid, viewportHei);
403 errorMask.setPixel(x, y, tcu::RGBA::red());
412 errorMask.setPixel(x, y, tcu::RGBA::green());
418 log << TestLog::Image("ColorChoiceErrorMask", "Error mask for color choices", errorMask);
es3fShaderDerivateTests.cpp 374 const tcu::PixelBufferAccess& errorMask,
404 errorMask.setPixel(tcu::RGBA::red().toVec(), x, y);
438 const tcu::PixelBufferAccess& errorMask,
447 DE_ASSERT(result.getWidth() == errorMask.getWidth());
448 DE_ASSERT(result.getHeight() == errorMask.getHeight());
462 tcu::clear(errorMask, green);
545 errorMask.setPixel(red, x, y);
569 virtual bool verify (const tcu::ConstPixelBufferAccess& result, const tcu::PixelBufferAccess& errorMask) = DE_NULL;
825 tcu::Surface errorMask(result.getWidth(), result.getHeight());
826 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec())
    [all...]
es3fDefaultVertexAttributeTests.cpp 500 tcu::Surface errorMask (RENDER_SIZE, RENDER_SIZE);
509 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toIVec());
530 errorMask.setPixel(x, y, tcu::RGBA::red());
544 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask)
es3fShaderInvarianceTests.cpp 361 tcu::Surface errorMask (m_renderSize, m_renderSize);
363 tcu::clear(errorMask.getAccess(), okColor);
372 errorMask.setPixel(x, y, errColor);
384 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
    [all...]
es3fASTCDecompressionCases.cpp 458 Surface errorMask;
461 const bool compareOk = compareBlockImages(referenceFrame, renderedFrame, threshold, blockSize, curNumNonDummyBlocks, firstFailedBlockCoord, errorMask, maxDiff);
481 << TestLog::Image("ErrorMask", "Error mask", errorMask)
es3fTextureMipmapTests.cpp 394 tcu::Surface errorMask (viewport.width, viewport.height);
439 tcu::getSubregion(errorMask.getAccess(), curX, curY, curW, curH),
454 << TestLog::Image("ErrorMask", "Error mask", errorMask);
707 tcu::Surface errorMask (viewport.width, viewport.height);
758 tcu::getSubregion(errorMask.getAccess(), curX, curY, curW, curH),
772 << TestLog::Image("ErrorMask", "Error mask", errorMask);
    [all...]
  /external/deqp/modules/internal/
ditImageCompareTests.cpp 68 tcu::TextureLevel errorMask;
78 errorMask.setStorage(refImg.getFormat(), refImg.getWidth(), refImg.getHeight(), refImg.getDepth());
82 result = tcu::fuzzyCompare(params, refImg, cmpImg, errorMask);
88 << TestLog::Image("ErrorMask", "Error Mask", errorMask);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 377 const tcu::PixelBufferAccess& errorMask,
387 const tcu::PixelBufferAccess& errorMask,
397 const tcu::PixelBufferAccess& errorMask,
407 const tcu::PixelBufferAccess& errorMask,
417 const tcu::PixelBufferAccess& errorMask,
427 const tcu::PixelBufferAccess& errorMask,
437 const tcu::PixelBufferAccess& errorMask,
512 const tcu::PixelBufferAccess& errorMask,
522 const tcu::PixelBufferAccess& errorMask,
532 const tcu::PixelBufferAccess& errorMask,
    [all...]
glsTextureTestUtil.cpp     [all...]
glsRasterizationTestUtil.cpp 668 tcu::Surface errorMask (surface.getWidth(), surface.getHeight());
670 tcu::clear(errorMask.getAccess(), tcu::Vec4(0.0f, 0.0f, 0.0f, 1.0f));
    [all...]
  /external/deqp/modules/gles31/stress/
es31sTessellationGeometryInteractionTests.cpp 381 tcu::Surface errorMask (image.getWidth(), image.getHeight());
384 tcu::clear(errorMask.getAccess(), tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f));
397 errorMask.setPixel(x, y, tcu::RGBA::red());
417 << tcu::TestLog::Image("ErrorMask", "Error mask", errorMask.getAccess())
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp 179 tcu::Surface errorMask (TEST_CANVAS_SIZE, TEST_CANVAS_SIZE);
190 errorMask.setPixel(x, y, tcu::RGBA::green());
193 errorMask.setPixel(x, y, tcu::RGBA::red());
204 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
249 tcu::Surface errorMask (TEST_CANVAS_SIZE, TEST_CANVAS_SIZE);
327 errorMask.setPixel(x, y, tcu::RGBA::red());
331 errorMask.setPixel(x, y, tcu::RGBA::green());
341 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
    [all...]
  /external/deqp/modules/egl/
teglNativeCoordMappingTests.cpp 266 tcu::Surface errorMask (result.getWidth(), result.getHeight());
279 errorMask.setPixel(x, y, tcu::RGBA(255, 0, 0, 255));
283 errorMask.setPixel(x, y, tcu::RGBA(0, 255, 0, 255));
289 errorMask.setPixel(x, y, tcu::RGBA(255, 0, 0, 255));
293 errorMask.setPixel(x, y, tcu::RGBA(0, 255, 0, 255));
301 errorMask.setPixel(x, y, tcu::RGBA(255, 0, 0, 255));
305 errorMask.setPixel(x, y, tcu::RGBA(0, 255, 0, 255));
313 log << TestLog::Image("Error Mask", "Error Mask", errorMask.getAccess());
  /external/deqp/modules/gles31/functional/
es31fSampleVariableTests.cpp 209 tcu::Surface errorMask (resultImage.getWidth(), resultImage.getHeight());
212 tcu::clear(errorMask.getAccess(), tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f));
229 errorMask.setPixel(x, y, tcu::RGBA::red());
242 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask.getAccess())
745 tcu::Surface errorMask (width, height);
750 tcu::clear(errorMask.getAccess(), tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f));
781 errorMask.setPixel(x, y, tcu::RGBA::red());
799 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask.getAccess()
    [all...]
es31fTextureGatherTests.cpp 587 tcu::Surface errorMask (width, height);
590 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec());
611 errorMask.setPixel(px, py, tcu::RGBA::red());
623 << TestLog::Image("ErrorMask", "Error mask", errorMask);
665 tcu::Surface errorMask (width, height);
668 tcu::clear(errorMask.getAccess(), tcu::RGBA::green().toVec());
688 errorMask.setPixel(px, py, tcu::RGBA::red());
700 << TestLog::Image("ErrorMask", "Error mask", errorMask);
    [all...]
es31fPrimitiveBoundingBoxTests.cpp     [all...]
  /external/deqp/modules/gles3/stress/
es3sSpecialFloatTests.cpp 182 tcu::Surface errorMask (TEST_CANVAS_SIZE, TEST_CANVAS_SIZE);
193 errorMask.setPixel(x, y, tcu::RGBA::green());
196 errorMask.setPixel(x, y, tcu::RGBA::red());
207 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
257 tcu::Surface errorMask (TEST_CANVAS_SIZE, TEST_CANVAS_SIZE);
335 errorMask.setPixel(x, y, tcu::RGBA::red());
339 errorMask.setPixel(x, y, tcu::RGBA::green());
349 << tcu::TestLog::Image("Error mask", "Error mask", errorMask)
    [all...]

Completed in 3216 milliseconds

1 2