Home | History | Annotate | Download | only in common

Lines Matching refs:maxLod

1262 	const float		maxLod			= lodBounds.y();
1264 const bool canBeMinified = maxLod > sampler.lodThreshold;
1286 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1293 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1304 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1327 const float maxLod = lodBounds.y();
1329 const bool canBeMinified = maxLod > sampler.lodThreshold;
1351 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1358 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1369 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1619 const float maxLod = lodBounds.y();
1621 const bool canBeMinified = maxLod > sampler.lodThreshold;
1644 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1651 const float maxF = de::clamp(maxLod - float(levelNdx), 0.0f, 1.0f);
1668 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1711 const float maxLod = lodBounds.y();
1713 const bool canBeMinified = maxLod > sampler.lodThreshold;
1737 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1744 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1755 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1781 const float maxLod = lodBounds.y();
1783 const bool canBeMinified = maxLod > sampler.lodThreshold;
1807 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1814 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1825 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1877 const float maxLod = lodBounds.y();
1879 const bool canBeMinified = maxLod > sampler.lodThreshold;
1901 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1908 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1919 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1971 const float maxLod = lodBounds.y();
1973 const bool canBeMinified = maxLod > sampler.lodThreshold;
1996 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
2003 const float maxF = de::clamp(maxLod - float(levelNdx), 0.0f, 1.0f);
2020 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
2068 const float maxLod = deFloatLog2(maxDBound+maxDErr);
2071 DE_ASSERT(minLod <= maxLod);
2072 return Vec2(minLod-lodErr, maxLod+lodErr);