Searched refs:deFloatClamp (Results 1 – 10 of 10) sorted by relevance
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderBuiltinVarTests.cpp | 182 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/openglcts/modules/common/ |
D | glcShaderRenderCase.cpp | 777 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/modules/glshared/ |
D | glsShaderRenderCase.cpp | 705 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/framework/delibs/debase/ |
D | deMath.h | 154 DE_INLINE float deFloatClamp (float x, float mn, float mx) { return (x <= mn) ? mn : ((x >= mx) ?… in deFloatClamp() function
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTextureUtil.cpp | 1080 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/modules/gles3/functional/ |
D | es3fShaderBuiltinVarTests.cpp | 191 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/ |
D | vktShaderRender.cpp | 2423 const float fx1 = deFloatClamp((sfx - sx0) * oosx, 0.0f, 1.0f); in computeVertexReference() 2424 const float fy1 = deFloatClamp((sfy - sy0) * oosy, 0.0f, 1.0f); in computeVertexReference()
|
D | vktShaderRenderTextureFunctionTests.cpp | 2833 computedLod = deFloatClamp(computedLod, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod() 2844 return deFloatClamp(deFloatCeil(computedLod + 0.5f) - 1.0f, 0.0f, (float)maxAccessibleLevel); in computeLevelFromLod()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl3cTextureSizePromotion.cpp | 934 deFloatClamp(s_source_texture_data_sn[channel], 0, 1); in checkDestinationTexture()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgExpression.cpp | 380 …const float value = deFloatClamp(minVal + step*(float)state.getRandom().getInt(0, numSteps), minV… in FloatLiteral()
|