Lines Matching defs:minLod

1391 	const float		minLod			= lodBounds.x();
1393 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1415 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1422 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1433 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1456 const float minLod = lodBounds.x();
1458 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1480 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1487 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1498 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1766 const float minLod = lodBounds.x();
1768 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1791 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1798 const float minF = de::clamp(minLod - float(levelNdx), 0.0f, 1.0f);
1815 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1858 const float minLod = lodBounds.x();
1860 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1884 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1891 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1902 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1928 const float minLod = lodBounds.x();
1930 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1954 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1961 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1972 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
2024 const float minLod = lodBounds.x();
2026 const bool canBeMagnified = minLod <= sampler.lodThreshold;
2048 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
2055 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
2066 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
2118 const float minLod = lodBounds.x();
2120 const bool canBeMagnified = minLod <= sampler.lodThreshold;
2143 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
2150 const float minF = de::clamp(minLod - float(levelNdx), 0.0f, 1.0f);
2167 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
2241 const float minLod = deFloatLog2(pMin-pMinErr);
2245 DE_ASSERT(minLod <= maxLod);
2246 return Vec2(minLod-lodErr, maxLod+lodErr);