Lines Matching refs:wrapS

1747 	if (sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width))  in sampleNearest1D()
1750 int i = wrap(sampler.wrapS, x, width); in sampleNearest1D()
1764 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest2D()
1768 int i = wrap(sampler.wrapS, x, width); in sampleNearest2D()
1785 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest3D()
1790 int i = wrap(sampler.wrapS, x, width); in sampleNearest3D()
1804 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear1D()
1805 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear1D()
1809 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear1D()
1810 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear1D()
1830 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear2D()
1831 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear2D()
1838 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear2D()
1839 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear2D()
1863 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear1DCompare()
1864 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear1DCompare()
1868 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear1DCompare()
1869 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear1DCompare()
1893 int i0 = wrap(sampler.wrapS, x0, w); in sampleLinear2DCompare()
1894 int i1 = wrap(sampler.wrapS, x1, w); in sampleLinear2DCompare()
1901 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear2DCompare()
1902 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear2DCompare()
1938 int i0 = wrap(sampler.wrapS, x0, width); in sampleLinear3D()
1939 int i1 = wrap(sampler.wrapS, x1, width); in sampleLinear3D()
1949 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, width); in sampleLinear3D()
1950 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, width); in sampleLinear3D()
2008 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample1DOffset()
2032 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample2DOffset()
2055 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample3DOffset()
2083 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample1DCompare()
2110 u = unnormalize(sampler.wrapS, s, m_size.x()); in sample2DCompare()
2383 const float u = unnormalize(sampler.wrapS, s, w); in fetchGatherArray2DOffsets()
2392 const int sampleX = wrap(sampler.wrapS, x0 + offsets[i].x(), w); in fetchGatherArray2DOffsets()
2434 clampingSampler.wrapS = Sampler::CLAMP_TO_EDGE; in sampleCubeSeamlessNearest()
2643 u = unnormalize(sampler.wrapS, s, size); in sampleCubeSeamlessLinear()
2747 clampingSampler.wrapS = Sampler::CLAMP_TO_EDGE; in sampleCubeSeamlessNearestCompare()
2763 u = unnormalize(sampler.wrapS, s, size); in sampleCubeSeamlessLinearCompare()
3333 u = unnormalize(sampler.wrapS, coords.s, size); in gather()