Home
last modified time | relevance | path

Searched refs:xBounds (Results 1 – 2 of 2) sorted by relevance

/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp289 const Vec2& xBounds, in isBilinearRangeValid() argument
294 DE_ASSERT(xBounds.x() <= xBounds.y()); in isBilinearRangeValid()
296 DE_ASSERT(xBounds.x() + searchStep > xBounds.x()); // step is not effectively 0 in isBilinearRangeValid()
297 DE_ASSERT(xBounds.y() + searchStep > xBounds.y()); in isBilinearRangeValid()
302 for (float x = xBounds.x(); x < xBounds.y()+searchStep; x += searchStep) in isBilinearRangeValid()
304 const float a = de::min(x, xBounds.y()); in isBilinearRangeValid()
318 const Vec2& xBounds, in isTrilinearRangeValid() argument
324 DE_ASSERT(xBounds.x() <= xBounds.y()); in isTrilinearRangeValid()
327 DE_ASSERT(xBounds.x() + searchStep > xBounds.x()); // step is not effectively 0 in isTrilinearRangeValid()
328 DE_ASSERT(xBounds.y() + searchStep > xBounds.y()); in isTrilinearRangeValid()
[all …]
DtcuTexCompareVerifier.cpp290 const Vec2& xBounds, in isBilinearPCFCompareValid() argument
296 DE_ASSERT(0.0f <= xBounds.x() && xBounds.x() <= xBounds.y() && xBounds.y() <= 1.0f); in isBilinearPCFCompareValid()
320 const float x0 = xBounds.x(); in isBilinearPCFCompareValid()
321 const float x1 = xBounds.y(); in isBilinearPCFCompareValid()
363 const Vec2& xBounds, in isBilinearCompareValid() argument
370 …return isBilinearPCFCompareValid(compareMode, prec, depths, xBounds, yBounds, cmpReference, result… in isBilinearCompareValid()