Searched defs:lookupPrec (Results 1 - 7 of 7) sorted by relevance

/external/deqp/modules/gles31/functional/
H A Des31fStencilTexturingTests.cpp718 tcu::LookupPrecision lookupPrec; local
722 lookupPrec.colorMask = tcu::BVec4(true, true, true, true);
723 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(IVec4(8, 8, 8, 8));
724 lookupPrec.coordBits = tcu::IVec3(22, 22, 22);
725 lookupPrec.uvwBits = tcu::IVec3(5, 5, 0);
731 compareOk = verifyTextureResult(m_testCtx, result, redTex, &texCoord[0], sampleParams, lookupPrec, lodPrec, tcu::PixelFormat(8, 8, 8, 8));
H A Des31fTextureGatherTests.cpp577 const PrecType& lookupPrec,
605 if (tcu::boolAny(tcu::logicalAnd(lookupPrec.colorMask,
607 lookupPrec.colorThreshold.template cast<ColorScalarType>()))))
609 if (!isGatherOffsetsResultValid(texture, sampler, lookupPrec, texCoord, componentNdx, offsets, resultPix))
1510 tcu::LookupPrecision lookupPrec; local
1511 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(colorBits);
1512 lookupPrec.coordBits = coordBits;
1513 lookupPrec.uvwBits = uvwBits;
1514 lookupPrec.colorMask = glu::TextureTestUtil::getCompareMask(pixelFormat);
1515 return verifyGatherOffsets<float>(log, rendered, texture, texCoords, sampler, lookupPrec, componentNd
572 verifyGatherOffsets(TestLog& log, const ConstPixelBufferAccess& result, const TexViewT& texture, const TexCoordT (&texCoords)[4], const tcu::Sampler& sampler, const PrecType& lookupPrec, int componentNdx, const PixelOffsets& getPixelOffsets) argument
1519 tcu::IntLookupPrecision lookupPrec; local
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp352 tcu::LookupPrecision lookupPrec; local
356 lookupPrec.coordBits = tcu::IVec3(20, 20, 0);
357 lookupPrec.uvwBits = tcu::IVec3(16, 16, 0); // Doesn't really matter since pixels are unicolored.
358 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(pixelFormat) - (isTrilinear ? 2 : 1), tcu::IVec4(0)));
359 lookupPrec.colorMask = getCompareMask(pixelFormat);
398 lookupPrec, lodPrec, m_testCtx.getWatchDog());
672 tcu::LookupPrecision lookupPrec; local
681 lookupPrec.colorMask = getCompareMask(m_renderCtx.getRenderTarget().getPixelFormat());
682 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(m_renderCtx.getRenderTarget().getPixelFormat())-2, IVec4(0)));
683 lookupPrec
[all...]
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureMipmapTests.cpp337 tcu::LookupPrecision lookupPrec; local
341 lookupPrec.coordBits = tcu::IVec3(20, 20, 0);
342 lookupPrec.uvwBits = tcu::IVec3(16, 16, 0); // Doesn't really matter since pixels are unicolored.
343 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(pixelFormat) - (isTrilinear ? 2 : 1), tcu::IVec4(0)));
344 lookupPrec.colorMask = getCompareMask(pixelFormat);
383 lookupPrec, lodPrec, m_context.getTestContext().getWatchDog());
571 tcu::LookupPrecision lookupPrec; local
580 lookupPrec.colorMask = getCompareMask(pixelFormat);
581 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(pixelFormat)-2, tcu::IVec4(0)));
582 lookupPrec
851 tcu::LookupPrecision lookupPrec; local
1034 tcu::LookupPrecision lookupPrec; local
1291 tcu::LookupPrecision lookupPrec; local
1559 tcu::LookupPrecision lookupPrec; local
[all...]
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.cpp1231 const tcu::LookupPrecision& lookupPrec,
1278 if (!tcu::boolAll(tcu::lessThanEqual(tcu::abs(resPix - refPix), lookupPrec.colorThreshold)))
1314 const bool isOk = tcu::isLookupResultValid(src, sampleParams.sampler, lookupPrec, coord, clampedLod, resPix);
1334 const tcu::LookupPrecision& lookupPrec,
1385 if (!tcu::boolAll(tcu::lessThanEqual(tcu::abs(resPix - refPix), lookupPrec.colorThreshold)))
1435 if (tcu::isLookupResultValid(src, sampleParams.sampler, lookupPrec, coord, clampedLod, resPix))
1459 const tcu::LookupPrecision& lookupPrec,
1468 DE_ASSERT(getCompareMask(pixelFormat) == lookupPrec.colorMask);
1471 numFailedPixels = computeTextureLookupDiff(result, reference.getAccess(), errorMask.getAccess(), src, texCoord, sampleParams, lookupPrec, lodPrec, testCtx.getWatchDog());
1495 const tcu::LookupPrecision& lookupPrec,
1225 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::Texture1DView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
1328 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::Texture2DView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
1454 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::Texture1DView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
1490 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::Texture2DView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
1527 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::TextureCubeView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
1670 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::TextureCubeView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
1707 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::Texture3DView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
1841 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::Texture3DView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
1878 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::Texture1DArrayView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
1985 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::Texture2DArrayView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
2098 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::Texture1DArrayView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
2134 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::Texture2DArrayView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
2171 computeTextureLookupDiff(const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, const tcu::TextureCubeArrayView& baseView, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::IVec4& coordBits, const tcu::LodPrecision& lodPrec, qpWatchDog* watchDog) argument
2318 verifyTextureResult(tcu::TestContext& testCtx, const tcu::ConstPixelBufferAccess& result, const tcu::TextureCubeArrayView& src, const float* texCoord, const ReferenceParams& sampleParams, const tcu::LookupPrecision& lookupPrec, const tcu::IVec4& coordBits, const tcu::LodPrecision& lodPrec, const tcu::PixelFormat& pixelFormat) argument
2721 tcu::LookupPrecision lookupPrec; local
2757 tcu::LookupPrecision lookupPrec; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp396 tcu::LookupPrecision lookupPrec; local
400 lookupPrec.coordBits = tcu::IVec3(20, 20, 0);
401 lookupPrec.uvwBits = tcu::IVec3(16, 16, 0); // Doesn't really matter since pixels are unicolored.
402 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(pixelFormat) - (isTrilinear ? 2 : 1), tcu::IVec4(0)));
403 lookupPrec.colorMask = getCompareMask(pixelFormat);
442 lookupPrec, lodPrec, m_testCtx.getWatchDog());
711 tcu::LookupPrecision lookupPrec; local
720 lookupPrec.colorMask = getCompareMask(m_renderCtx.getRenderTarget().getPixelFormat());
721 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(max(getBitsVec(m_renderCtx.getRenderTarget().getPixelFormat())-2, IVec4(0)));
722 lookupPrec
1343 tcu::LookupPrecision lookupPrec; local
1557 tcu::LookupPrecision lookupPrec; local
1868 tcu::LookupPrecision lookupPrec; local
2189 tcu::LookupPrecision lookupPrec; local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp622 const PrecType& lookupPrec,
650 if (tcu::boolAny(tcu::logicalAnd(lookupPrec.colorMask,
652 lookupPrec.colorThreshold.template cast<ColorScalarType>()))))
654 if (!isGatherOffsetsResultValid(texture, sampler, lookupPrec, texCoord, componentNdx, offsets, resultPix))
1377 tcu::LookupPrecision lookupPrec; local
1378 lookupPrec.colorThreshold = tcu::computeFixedPointThreshold(colorBits);
1379 lookupPrec.coordBits = coordBits;
1380 lookupPrec.uvwBits = uvwBits;
1381 lookupPrec.colorMask = TextureTestUtil::getCompareMask(pixelFormat);
1382 return verifyGatherOffsets<float>(log, rendered, texture, texCoords, sampler, lookupPrec, componentNd
617 verifyGatherOffsets(TestLog& log, const ConstPixelBufferAccess& result, const TexViewT& texture, const TexCoordT (&texCoords)[4], const tcu::Sampler& sampler, const PrecType& lookupPrec, int componentNdx, const PixelOffsets& getPixelOffsets) argument
1386 tcu::IntLookupPrecision lookupPrec; local
[all...]

Completed in 115 milliseconds