Lines Matching refs:CONSTANT
190 enum class UsedFactor { SLOPE = 0, CONSTANT = 1 };
216 const float constantDepth; // When using UsedFactor::CONSTANT.
388 // WHEN USING THE CONSTANT FACTOR:
394 tcu::Vec4(-1.0f, -1.0f, ((m_params.usedFactor == UsedFactor::CONSTANT) ? m_params.constantDepth : 0.0f), 1.0f),
395 tcu::Vec4(-1.0f, 1.0f, ((m_params.usedFactor == UsedFactor::CONSTANT) ? m_params.constantDepth : 0.0f), 1.0f),
396 tcu::Vec4( 1.0f, -1.0f, ((m_params.usedFactor == UsedFactor::CONSTANT) ? m_params.constantDepth : 1.0f), 1.0f),
397 tcu::Vec4( 1.0f, 1.0f, ((m_params.usedFactor == UsedFactor::CONSTANT) ? m_params.constantDepth : 1.0f), 1.0f),
399 const float sampleDepth = ((m_params.usedFactor == UsedFactor::CONSTANT) ? m_params.constantDepth : 0.5f);
440 const float depthBiasConstantFactor = ((m_params.usedFactor == UsedFactor::CONSTANT) ? static_cast<float>(static_cast<double>(m_params.targetBias) / rValue.first) : 0.0f);
687 { UsedFactor::CONSTANT, "constant" },
785 const bool constantFactor = (usedFactorCase.usedFactor == UsedFactor::CONSTANT);
819 if (usedFactorCase.usedFactor != UsedFactor::CONSTANT)