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

1 2

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineClearUtil.cpp 43 return (defaultClearColorUnorm() - formatInfo.lookupBias) / formatInfo.lookupScale;
50 const tcu::Vec4 color = (defaultClearColorUnorm() - formatInfo.lookupBias) / formatInfo.lookupScale;
61 const tcu::Vec4 color = (defaultClearColorUnorm() - formatInfo.lookupBias) / formatInfo.lookupScale;
vktPipelineImageSamplingInstance.cpp 192 tcu::Vec4 lookupBias (0.0f);
200 lookupBias = fmtInfo.lookupBias;
213 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1D>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
227 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1DArray>(renderTargetFormat, textureView, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
231 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1DArray>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
240 program = MovePtr<Program>(new SamplerProgram<tcu::Texture2D>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
249 program = MovePtr<Program>(new SamplerProgram<tcu::TextureCube>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
267 program = MovePtr<Program>(new SamplerProgram<tcu::TextureCubeArray>(renderTargetFormat, textureView, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
272 program = MovePtr<Program>(new SamplerProgram<tcu::TextureCubeArray>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping))
    [all...]
vktPipelineReferenceRenderer.hpp 179 SamplerFragmentShader (const tcu::TextureFormat& colorFormat, const TextureType& texture, const tcu::Sampler& sampler, float lod, const tcu::Vec4& lookupScale, const tcu::Vec4& lookupBias, const tcu::UVec4& swizzle)
187 , m_lookupBias (lookupBias)
251 const tcu::Vec4 color = (swizColor + m_colorFormatInfo.lookupBias) / m_colorFormatInfo.lookupScale;
273 SamplerProgram (const tcu::TextureFormat& colorFormat, const TextureType& texture, const tcu::Sampler& sampler, float lod, const tcu::Vec4& lookupScale, const tcu::Vec4& lookupBias, const tcu::UVec4& swizzle)
275 , m_fragmentShader (colorFormat, texture, sampler, lod, lookupScale, lookupBias, swizzle)
vktPipelineImageTests.cpp 143 << " fragColor = (texture(texSampler, vtxTexCoords." << texCoordSwizzle << std::scientific << ") * vec4" << formatInfo.lookupScale << ") + vec4" << formatInfo.lookupBias << ";\n"
vktPipelineImageViewTests.cpp 138 tcu::Vec4 swizzledBias = swizzle(formatInfo.lookupBias, m_componentMapping);
  /external/deqp/framework/common/
tcuTextureUtil.hpp 91 Vec4 lookupBias;
97 , lookupBias (lookupBias_)
  /external/deqp/modules/gles31/functional/
es31fTextureBorderClampTests.cpp 514 tcu::Vec4 lookupBias;
    [all...]
es31fTextureFormatTests.cpp 190 renderParams.colorBias = spec.lookupBias;
336 renderParams.colorBias = spec.lookupBias;
363 fetchTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), effectiveRefTexture, &texCoord[0], spec.lookupScale, spec.lookupBias);
es31fFboColorbufferTests.cpp 148 arrayTexShader.setTexScaleBias(fmtInfo.lookupScale, fmtInfo.lookupBias);
es31fTextureSpecificationTests.cpp 248 shader.setTexScaleBias(m_texFormatInfo.lookupScale, m_texFormatInfo.lookupBias);
600 m_texFormatInfo.lookupBias = Vec4(0.25f, 0.0f, 0.0f, 1.0f);
645 m_texFormatInfo.lookupBias = Vec4(0.25f, 0.0f, 0.0f, 1.0f);
714 m_texFormatInfo.lookupBias = Vec4(0.25f, 0.0f, 0.0f, 1.0f);
    [all...]
es31fTextureFilteringTests.cpp 339 refParams.colorBias = fmtInfo.lookupBias;
  /external/deqp/modules/gles3/functional/
es3fFboColorbufferTests.cpp 195 readPixels(dst, 0, 0, m_width, m_height, fboFormat, fmtInfo.lookupScale, fmtInfo.lookupBias);
239 multiTexShader.setTexScaleBias(0, fmtInfo0.lookupScale * 0.5f, fmtInfo0.lookupBias * 0.5f);
240 multiTexShader.setTexScaleBias(1, fmtInfo1.lookupScale * 0.5f, fmtInfo1.lookupBias * 0.5f);
372 cubeTexShader.setTexScaleBias(fmtInfo.lookupScale, fmtInfo.lookupBias);
501 arrayTexShader.setTexScaleBias(fmtInfo.lookupScale, fmtInfo.lookupBias);
627 tdTexShader.setTexScaleBias(fmtInfo.lookupScale, fmtInfo.lookupBias);
882 readPixels(dst, 0, 0, fboSizes[1], fboSizes[1], fboFormat, fmtInfo.lookupScale, fmtInfo.lookupBias);
    [all...]
es3fFboMultisampleTests.cpp 224 readPixels(dst, 0, 0, m_size.x(), m_size.y(), colorFmt, colorFmtInfo.lookupScale, colorFmtInfo.lookupBias);
es3fFramebufferBlitTests.cpp 360 tcu::select(dstFmtRangeInfo.lookupBias, srcFmtRangeInfo.lookupBias, tcu::logicalAnd(copyMask, srcIsGreater)));
364 tcu::select(dstFmtRangeInfo.lookupBias, srcFmtRangeInfo.lookupBias, tcu::logicalOr(tcu::logicalNot(copyMask), srcIsGreater)));
422 readPixels(dst, 0, 0, m_size.x(), m_size.y(), dstFormat, dstRangeInfo.lookupScale, dstRangeInfo.lookupBias);
    [all...]
es3fFboRenderTest.cpp 548 texFromFboShader.setTexScaleBias(0, fboRangeInfo.lookupScale, fboRangeInfo.lookupBias);
601 readPixels(context, dst, 0, 0, width, height, colorFormat, fboRangeInfo.lookupScale, fboRangeInfo.lookupBias);
    [all...]
es3fTextureFormatTests.cpp 173 renderParams.colorBias = spec.lookupBias;
359 renderParams.colorBias = spec.lookupBias;
520 renderParams.colorBias = spec.lookupBias;
673 renderParams.colorBias = spec.lookupBias;
819 renderParams.colorBias = spec.lookupBias;
    [all...]
es3fTextureSwizzleTests.cpp 159 renderParams.colorBias = spec.lookupBias;
es3fFboInvalidateTests.cpp 545 readPixels(dst, 0, 0, getWidth(), getHeight(), colorFmt, colorFmtInfo.lookupScale, colorFmtInfo.lookupBias);
643 texShader.setTexScaleBias(0, colorFmtInfo.lookupScale, colorFmtInfo.lookupBias);
    [all...]
es3fTextureFilteringTests.cpp 280 refParams.colorBias = fmtInfo.lookupBias;
586 sampleParams.colorBias = fmtInfo.lookupBias;
844 refParams.colorBias = fmtInfo.lookupBias;
    [all...]
es3fTextureWrapTests.cpp 323 refParams.colorBias = useDefaultColorScaleAndBias ? texFormatInfo.lookupBias : tcu::Vec4(0.0f);
es3fTextureSpecificationTests.cpp 285 shader.setTexScaleBias(0, m_texFormatInfo.lookupScale, m_texFormatInfo.lookupBias);
368 shader.setTexScaleBias(m_texFormatInfo.lookupScale, m_texFormatInfo.lookupBias);
469 shader.setTexScaleBias(m_texFormatInfo.lookupScale, m_texFormatInfo.lookupBias);
569 shader.setTexScaleBias(m_texFormatInfo.lookupScale, m_texFormatInfo.lookupBias);
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 232 refParams.colorBias = fmtInfo.lookupBias;
545 sampleParams.colorBias = fmtInfo.lookupBias;
  /external/deqp/modules/gles2/functional/
es2fTextureFormatTests.cpp 156 renderParams.colorBias = spec.lookupBias;
328 renderParams.colorBias = spec.lookupBias;
es2fTextureFilteringTests.cpp 280 refParams.colorBias = fmtInfo.lookupBias;
559 sampleParams.colorBias = fmtInfo.lookupBias;
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 223 refParams.colorBias = fmtInfo.lookupBias;
555 sampleParams.colorBias = fmtInfo.lookupBias;

Completed in 363 milliseconds

1 2