• Home
  • Raw
  • Download

Lines Matching refs:level0

642 static bool isNearestMipmapLinearCompareResultValid (const ConstPixelBufferAccess&	level0,  in isNearestMipmapLinearCompareResultValid()  argument
652 const bool isFixedPointDepth = isFixedPointDepthTextureFormat(level0.getFormat()); in isNearestMipmapLinearCompareResultValid()
654 const int w0 = level0.getWidth(); in isNearestMipmapLinearCompareResultValid()
656 const int h0 = level0.getHeight(); in isNearestMipmapLinearCompareResultValid()
678 …const float depth0 = lookupDepth(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT,… in isNearestMipmapLinearCompareResultValid()
696 static bool isLinearMipmapLinearCompareResultValid (const ConstPixelBufferAccess& level0, in isLinearMipmapLinearCompareResultValid() argument
706 const bool isFixedPointDepth = isFixedPointDepthTextureFormat(level0.getFormat()); in isLinearMipmapLinearCompareResultValid()
711 const int w0 = level0.getWidth(); in isLinearMipmapLinearCompareResultValid()
713 const int h0 = level0.getHeight(); in isLinearMipmapLinearCompareResultValid()
747 depths0[0] = lookupDepth(level0, sampler, x0, y0, coordZ); in isLinearMipmapLinearCompareResultValid()
748 depths0[1] = lookupDepth(level0, sampler, x1, y0, coordZ); in isLinearMipmapLinearCompareResultValid()
749 depths0[2] = lookupDepth(level0, sampler, x0, y1, coordZ); in isLinearMipmapLinearCompareResultValid()
750 depths0[3] = lookupDepth(level0, sampler, x1, y1, coordZ); in isLinearMipmapLinearCompareResultValid()
788 static bool isMipmapLinearCompareResultValid (const ConstPixelBufferAccess& level0, in isMipmapLinearCompareResultValid() argument
800 …return isLinearMipmapLinearCompareResultValid(level0, level1, sampler, prec, coord, coordZ, fBound… in isMipmapLinearCompareResultValid()
802 …return isNearestMipmapLinearCompareResultValid(level0, level1, sampler, prec, coord, coordZ, fBoun… in isMipmapLinearCompareResultValid()