Home
last modified time | relevance | path

Searched refs:deFloatClamp (Results 1 – 14 of 14) sorted by relevance

/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderBuiltinVarTests.cpp182 float zNear = deFloatClamp(m_params.zNear, 0.0f, 1.0f); in evaluate()
183 float zFar = deFloatClamp(m_params.zFar, 0.0f, 1.0f); in evaluate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineAttachmentFeedbackLoopLayoutTests.cpp1386 depth = deFloatClamp(depth, 0.0f, 1.0f); in verifyImage()
1532 color.x() = deFloatClamp(color.x(), 0.0f, 1.0f); in verifyImage()
1533 color.y() = deFloatClamp(color.y(), 0.0f, 1.0f); in verifyImage()
1534 color.z() = deFloatClamp(color.z(), 0.0f, 1.0f); in verifyImage()
1535 color.w() = deFloatClamp(color.w(), 0.0f, 1.0f); in verifyImage()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineAttachmentFeedbackLoopLayoutTests.cpp1386 depth = deFloatClamp(depth, 0.0f, 1.0f); in verifyImage()
1532 color.x() = deFloatClamp(color.x(), 0.0f, 1.0f); in verifyImage()
1533 color.y() = deFloatClamp(color.y(), 0.0f, 1.0f); in verifyImage()
1534 color.z() = deFloatClamp(color.z(), 0.0f, 1.0f); in verifyImage()
1535 color.w() = deFloatClamp(color.w(), 0.0f, 1.0f); in verifyImage()
/third_party/vk-gl-cts/modules/glshared/
DglsShaderRenderCase.cpp705 float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
706 float fy1 = deFloatClamp((sfy - sy0) * oosy, 0.0f, 1.0f); in computeVertexReference()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderRenderCase.cpp777 float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
778 float fy1 = deFloatClamp((sfy - sy0) * oosy, 0.0f, 1.0f); in computeVertexReference()
/third_party/vk-gl-cts/framework/common/
DtcuTextureUtil.cpp1080 float p = deFloatClamp(deFloatSqrt(a*a + b*b), 0.0f, 1.0f); in fillWithRepeatableGradient()
1342 float rc = deFloatClamp(color[0], 0.0f, maxVal); in packRGB999E5()
1343 float gc = deFloatClamp(color[1], 0.0f, maxVal); in packRGB999E5()
1344 float bc = deFloatClamp(color[2], 0.0f, maxVal); in packRGB999E5()
/third_party/vk-gl-cts/framework/delibs/debase/
DdeMath.h154 DE_INLINE float deFloatClamp (float x, float mn, float mx) { return (x <= mn) ? mn : ((x >= mx) ?… in deFloatClamp() function
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderBuiltinVarTests.cpp191 float zNear = deFloatClamp(m_params.zNear, 0.0f, 1.0f); in evaluate()
192 float zFar = deFloatClamp(m_params.zFar, 0.0f, 1.0f); in evaluate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp2459 const float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
2460 const float fy1 = deFloatClamp((sfy - sy0) * oosy, 0.0f, 1.0f); in computeVertexReference()
DvktShaderRenderTextureFunctionTests.cpp2873 computedLod = deFloatClamp(computedLod, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod()
2884 return deFloatClamp(deFloatCeil(computedLod + 0.5f) - 1.0f, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
DvktShaderRender.cpp2459 const float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference()
2460 const float fy1 = deFloatClamp((sfy - sy0) * oosy, 0.0f, 1.0f); in computeVertexReference()
DvktShaderRenderTextureFunctionTests.cpp2873 computedLod = deFloatClamp(computedLod, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod()
2884 return deFloatClamp(deFloatCeil(computedLod + 0.5f) - 1.0f, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl3cTextureSizePromotion.cpp934 deFloatClamp(s_source_texture_data_sn[channel], 0, 1); in checkDestinationTexture()
/third_party/vk-gl-cts/framework/randomshaders/
DrsgExpression.cpp380 …const float value = deFloatClamp(minVal + step*(float)state.getRandom().getInt(0, numSteps), minV… in FloatLiteral()