Home | History | Annotate | Download | only in common

Lines Matching refs:level0

754 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess&	level0,
763 const int w0 = level0.getWidth();
779 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), coordY, 0);
790 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
799 const int w0 = level0.getWidth();
801 const int h0 = level0.getHeight();
827 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), coordZ);
840 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
848 const int w0 = level0.getWidth();
850 const int h0 = level0.getHeight();
852 const int d0 = level0.getDepth();
888 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.wrapR, k0, d0));
903 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
915 const int w0 = level0.getWidth();
927 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
940 lookupLine(line0, level0, sampler, x0, x1, coordY);
978 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
990 const int w0 = level0.getWidth();
992 const int h0 = level0.getHeight();
1010 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
1027 lookupQuad(quad0, level0, sampler, x0, x1, y0, y1, coordZ);
1076 static bool isLinearMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1087 const int w0 = level0.getWidth();
1089 const int h0 = level0.getHeight();
1091 const int d0 = level0.getDepth();
1115 const TextureChannelClass texClass = getTextureChannelClass(level0.getFormat().type);
1136 lookupQuad(quad00, level0, sampler, x0, x1, y0, y1, z0);
1137 lookupQuad(quad01, level0, sampler, x0, x1, y0, y1, z1);
1227 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1238 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coordX, coordY, fBounds, result);
1240 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coordX, coordY, fBounds, result);
1243 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1254 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, coordZ, fBounds, result);
1256 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, coordZ, fBounds, result);
1859 static bool isMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0,
1869 return isLinearMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, fBounds, result);
1871 return isNearestMipmapLinearSampleResultValid(level0, level1, sampler, prec, coord, fBounds, result);