Lines Matching defs:level0
869 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
878 const int w0 = level0.getWidth();
894 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), coordY, 0);
905 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
914 const int w0 = level0.getWidth();
916 const int h0 = level0.getHeight();
942 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ);
955 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
963 const int w0 = level0.getWidth();
965 const int h0 = level0.getHeight();
967 const int d0 = level0.getDepth();
1003 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.wrapR, k0, d0));
1018 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1030 const int w0 = level0.getWidth();
1042 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
1060 lookupLine(line0, level0, sampler, x0, x1, coordY);
1098 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1110 const int w0 = level0.getWidth();
1112 const int h0 = level0.getHeight();
1130 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
1152 lookupQuad(quad0, level0, sampler, x0, x1, y0, y1, coordZ);
1201 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1212 const int w0 = level0.getWidth();
1214 const int h0 = level0.getHeight();
1216 const int d0 = level0.getDepth();
1240 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
1266 lookupQuad(quad00, level0, sampler, x0, x1, y0, y1, z0);
1267 lookupQuad(quad01, level0, sampler, x0, x1, y0, y1, z1);
1357 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1368 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coordX, coordY, fBounds, result);
1370 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coordX, coordY, fBounds, result);
1373 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1384 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, coordZ, fBounds, result);
1386 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, coordZ, fBounds, result);
2007 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
2017 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, fBounds, result);
2019 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, fBounds, result);