Lines Matching refs:tessLevel

562 static inline float getClampedTessLevel (SpacingMode mode, float tessLevel)  in getClampedTessLevel()  argument
566 case SPACINGMODE_EQUAL: return de::max(1.0f, tessLevel); in getClampedTessLevel()
567 case SPACINGMODE_FRACTIONAL_ODD: return de::max(1.0f, tessLevel); in getClampedTessLevel()
568 case SPACINGMODE_FRACTIONAL_EVEN: return de::max(2.0f, tessLevel); in getClampedTessLevel()
592 static int getClampedRoundedTessLevel (SpacingMode mode, float tessLevel) in getClampedRoundedTessLevel() argument
594 return getRoundedTessLevel(mode, getClampedTessLevel(mode, tessLevel)); in getClampedRoundedTessLevel()
1225 static bool verifyFractionalSpacingSingle (TestLog& log, SpacingMode spacingMode, float tessLevel, … in verifyFractionalSpacingSingle() argument
1231 const float clampedLevel = getClampedTessLevel(spacingMode, tessLevel); in verifyFractionalSpacingSingle()
1234 …string failNote = "Note: tessellation level is " + de::toString(tessLevel) + "\nNote: sorted … in verifyFractionalSpacingSingle()
1363 float tessLevel; member
1366 …LineData (float lev, float len, int loc) : tessLevel(lev), additionalSegmentLength(len), additiona… in LineData()
1392 …<LineData> lineDatasSortedByLevel = sorted(lineDatas, memberPred<std::less>(&LineData::tessLevel)); in verifyFractionalSpacingMultiple()
1404 …f (getClampedTessLevel(spacingMode, curData.tessLevel) == getClampedTessLevel(spacingMode, prevDat… in verifyFractionalSpacingMultiple()
1408 …::Message << "Note: tessellation levels are " << curData.tessLevel << " and " << prevData.tessLevel in verifyFractionalSpacingMultiple()
1409 << " (clamped level " << getClampedTessLevel(spacingMode, curData.tessLevel) << ")" in verifyFractionalSpacingMultiple()
1426 const float curClampedLevel = getClampedTessLevel(spacingMode, curData.tessLevel); in verifyFractionalSpacingMultiple()
1427 const float prevClampedLevel = getClampedTessLevel(spacingMode, prevData.tessLevel); in verifyFractionalSpacingMultiple()
1442 …"Note: two edges have tessellation levels " << prevData.tessLevel << " and " << curData.tessLevel in verifyFractionalSpacingMultiple()