Lines Matching refs:wrapS
1907 if (sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) in sampleNearest1D()
1910 int i = wrap(sampler.wrapS, x, width); in sampleNearest1D()
1924 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest2D()
1928 int i = wrap(sampler.wrapS, x, width); in sampleNearest2D()
1945 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest3D()
1950 int i = wrap(sampler.wrapS, x, width); in sampleNearest3D()
1964 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear1D()
1965 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear1D()
1969 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear1D()
1970 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear1D()
1992 i[m] = wrap(sampler.wrapS, x[m], width); in sampleCubic1D()
1996 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic1D()
2028 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear2D()
2029 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear2D()
2036 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear2D()
2037 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear2D()
2071 i[m] = wrap(sampler.wrapS, x[m], width); in sampleCubic2D()
2077 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic2D()
2112 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear1DCompare()
2113 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear1DCompare()
2117 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear1DCompare()
2118 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear1DCompare()
2142 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear2DCompare()
2143 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear2DCompare()
2150 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear2DCompare()
2151 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear2DCompare()
2187 int i0 = wrap(sampler.wrapS, x0, width); in sampleLinear3D()
2188 int i1 = wrap(sampler.wrapS, x1, width); in sampleLinear3D()
2198 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, width); in sampleLinear3D()
2199 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, width); in sampleLinear3D()
2248 i[m] = wrap(sampler.wrapS, x[m], width); in sampleCubic3D()
2256 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic3D()
2321 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample1DOffset()
2346 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample2DOffset()
2370 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample3DOffset()
2399 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample1DCompare()
2426 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample2DCompare()
2727 const float u = unnormalize(sampler.wrapS, s, w); in fetchGatherArray2DOffsets()
2736 const int sampleX = wrap(sampler.wrapS, x0 + offsets[i].x(), w); in fetchGatherArray2DOffsets()
2778 clampingSampler.wrapS = Sampler::CLAMP_TO_EDGE; in sampleCubeSeamlessNearest()
2992 u = unnormalize(sampler.wrapS, s, size); in sampleCubeSeamlessLinear()
3096 clampingSampler.wrapS = Sampler::CLAMP_TO_EDGE; in sampleCubeSeamlessNearestCompare()
3112 u = unnormalize(sampler.wrapS, s, size); in sampleCubeSeamlessLinearCompare()
3686 u = unnormalize(sampler.wrapS, coords.s, size); in gather()