Home | History | Annotate | Download | only in common

Lines Matching refs:minLod

1315 	const float		minLod			= lodBounds.x();
1317 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1339 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1346 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1357 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1380 const float minLod = lodBounds.x();
1382 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1404 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1411 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1422 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1680 const float minLod = lodBounds.x();
1682 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1705 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1712 const float minF = de::clamp(minLod - float(levelNdx), 0.0f, 1.0f);
1729 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1772 const float minLod = lodBounds.x();
1774 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1798 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1805 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1816 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1842 const float minLod = lodBounds.x();
1844 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1868 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1875 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1886 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
1938 const float minLod = lodBounds.x();
1940 const bool canBeMagnified = minLod <= sampler.lodThreshold;
1962 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
1969 const float minF = de::clamp(minLod - float(level), 0.0f, 1.0f);
1980 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
2032 const float minLod = lodBounds.x();
2034 const bool canBeMagnified = minLod <= sampler.lodThreshold;
2057 const int minLevel = de::clamp((int)deFloatFloor(minLod), minTexLevel, maxTexLevel-1);
2064 const float minF = de::clamp(minLod - float(levelNdx), 0.0f, 1.0f);
2081 const int minLevel = de::clamp((int)deFloatCeil(minLod + 0.5f) - 1, minTexLevel, maxTexLevel);
2150 const float minLod = deFloatLog2(pMin-pMinErr);
2154 DE_ASSERT(minLod <= maxLod);
2155 return Vec2(minLod-lodErr, maxLod+lodErr);