• Home
  • Raw
  • Download

Lines Matching refs:inBounds

1071 	DE_ASSERT(de::inBounds(x, 0, m_size.x()));  in getPixel()
1072 DE_ASSERT(de::inBounds(y, 0, m_size.y())); in getPixel()
1073 DE_ASSERT(de::inBounds(z, 0, m_size.z())); in getPixel()
1208 DE_ASSERT(de::inBounds(x, 0, m_size.x())); in getPixelInt()
1209 DE_ASSERT(de::inBounds(y, 0, m_size.y())); in getPixelInt()
1210 DE_ASSERT(de::inBounds(z, 0, m_size.z())); in getPixelInt()
1338 DE_ASSERT(de::inBounds(x, 0, getWidth())); in getPixDepth()
1339 DE_ASSERT(de::inBounds(y, 0, getHeight())); in getPixDepth()
1340 DE_ASSERT(de::inBounds(z, 0, getDepth())); in getPixDepth()
1370 DE_ASSERT(de::inBounds(x, 0, getWidth())); in getPixStencil()
1371 DE_ASSERT(de::inBounds(y, 0, getHeight())); in getPixStencil()
1372 DE_ASSERT(de::inBounds(z, 0, getDepth())); in getPixStencil()
1401 DE_ASSERT(de::inBounds(x, 0, getWidth())); in setPixel()
1402 DE_ASSERT(de::inBounds(y, 0, getHeight())); in setPixel()
1403 DE_ASSERT(de::inBounds(z, 0, getDepth())); in setPixel()
1553 DE_ASSERT(de::inBounds(x, 0, getWidth())); in setPixel()
1554 DE_ASSERT(de::inBounds(y, 0, getHeight())); in setPixel()
1555 DE_ASSERT(de::inBounds(z, 0, getDepth())); in setPixel()
1663 DE_ASSERT(de::inBounds(x, 0, getWidth())); in setPixDepth()
1664 DE_ASSERT(de::inBounds(y, 0, getHeight())); in setPixDepth()
1665 DE_ASSERT(de::inBounds(z, 0, getDepth())); in setPixDepth()
1700 DE_ASSERT(de::inBounds(x, 0, getWidth())); in setPixStencil()
1701 DE_ASSERT(de::inBounds(y, 0, getHeight())); in setPixStencil()
1702 DE_ASSERT(de::inBounds(z, 0, getDepth())); in setPixStencil()
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()
1996 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic1D()
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()
2038 bool j0UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j0, 0, h); in sampleLinear2D()
2039 bool j1UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j1, 0, h); in sampleLinear2D()
2077 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic2D()
2079 jUseBorder[n] = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j[n], 0, height); in sampleCubic2D()
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()
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()
2152 bool j0UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j0, 0, h); in sampleLinear2DCompare()
2153 bool j1UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j1, 0, h); in sampleLinear2DCompare()
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()
2200 bool j0UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j0, 0, height); in sampleLinear3D()
2201 bool j1UseBorder = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j1, 0, height); in sampleLinear3D()
2202 bool k0UseBorder = sampler.wrapR == Sampler::CLAMP_TO_BORDER && !de::inBounds(k0, 0, depth); in sampleLinear3D()
2203 bool k1UseBorder = sampler.wrapR == Sampler::CLAMP_TO_BORDER && !de::inBounds(k1, 0, depth); in sampleLinear3D()
2256 iUseBorder[m] = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i[m], 0, width); in sampleCubic3D()
2258 jUseBorder[n] = sampler.wrapT == Sampler::CLAMP_TO_BORDER && !de::inBounds(j[n], 0, height); in sampleCubic3D()
2260 kUseBorder[o] = sampler.wrapR == Sampler::CLAMP_TO_BORDER && !de::inBounds(k[o], 0, depth); in sampleCubic3D()
2293 DE_ASSERT(de::inBounds(level, 0, m_size.y())); in sample1D()
2301 DE_ASSERT(de::inBounds(depth, 0, m_size.z())); in sample2D()
2315 DE_ASSERT(de::inBounds(offset.y(), 0, m_size.y())); in sample1DOffset()
2338 DE_ASSERT(de::inBounds(offset.z(), 0, m_size.z())); in sample2DOffset()
2390 DE_ASSERT(de::inBounds(offset.y(), 0, m_size.y())); in sample1DCompare()
2415 DE_ASSERT(de::inBounds(offset.z(), 0, m_size.z())); in sample2DCompare()
2723 DE_ASSERT(de::inBounds(componentNdx, 0, 4)); in fetchGatherArray2DOffsets()
2754 DE_ASSERT(de::inBounds(componentNdx, 0, 4)); in gatherArray2DOffsets()
2872 bool uInBounds = de::inBounds(origCoords.s, 0, size); in remapCubeEdgeCoords()
2873 bool vInBounds = de::inBounds(origCoords.t, 0, size); in remapCubeEdgeCoords()
3565 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()
3621 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()
3943 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()
3991 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()
4048 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()
4143 DE_ASSERT(de::inBounds(levelNdx, 0, getNumLevels())); in allocLevel()