Lines Matching refs:texelFetch
660 bool texelFetch = (function == Fetch); in sampleQuad2D() local
662 Short4 uuuu = texelFetch ? Short4(As<Int4>(u)) : address(u, state.addressingModeU, mipmap); in sampleQuad2D()
663 Short4 vvvv = texelFetch ? Short4(As<Int4>(v)) : address(v, state.addressingModeV, mipmap); in sampleQuad2D()
664 Short4 wwww = texelFetch ? Short4(As<Int4>(w)) : address(w, state.addressingModeW, mipmap); in sampleQuad2D()
666 if(state.textureFilter == FILTER_POINT || texelFetch) in sampleQuad2D()
855 bool texelFetch = (function == Fetch); in sample3D() local
857 Short4 uuuu = texelFetch ? Short4(As<Int4>(u_)) : address(u_, state.addressingModeU, mipmap); in sample3D()
858 Short4 vvvv = texelFetch ? Short4(As<Int4>(v_)) : address(v_, state.addressingModeV, mipmap); in sample3D()
859 Short4 wwww = texelFetch ? Short4(As<Int4>(w_)) : address(w_, state.addressingModeW, mipmap); in sample3D()
861 if(state.textureFilter == FILTER_POINT || texelFetch) in sample3D()
1566 bool texelFetch = (function == Fetch); in computeIndices() local
1569 if(!texelFetch) in computeIndices()
1578 …uuuu = applyOffset(uuuu, offset.x, Int4(w), texelFetch ? ADDRESSING_TEXELFETCH : state.addressingM… in computeIndices()
1580 …vvvv = applyOffset(vvvv, offset.y, Int4(h), texelFetch ? ADDRESSING_TEXELFETCH : state.addressingM… in computeIndices()
1593 if(!texelFetch) in computeIndices()
1601 …wwww = applyOffset(wwww, offset.z, Int4(d), texelFetch ? ADDRESSING_TEXELFETCH : state.addressingM… in computeIndices()
1621 if(texelFetch) in computeIndices()