Lines Matching full:componentndx
2321 static Vec4 fetchGatherArray2DOffsets (const ConstPixelBufferAccess& src, const Sampler& sampler, float s, float t, int depth, int componentNdx, const IVec2 (&offsets)[4])
2323 DE_ASSERT(de::inBounds(componentNdx, 0, 4));
2345 result[i] = pixel[componentNdx];
2351 Vec4 gatherArray2DOffsets (const ConstPixelBufferAccess& src, const Sampler& sampler, float s, float t, int depth, int componentNdx, const IVec2 (&offsets)[4])
2354 DE_ASSERT(de::inBounds(componentNdx, 0, 4));
2356 return fetchGatherArray2DOffsets(src, sampler, s, t, depth, componentNdx, offsets);
3253 Vec4 TextureCubeView::gather (const Sampler& sampler, float s, float t, float r, int componentNdx) const
3279 result[i] = sampleColors[sampleIndices[i]][componentNdx];
3478 Vec4 Texture2DArrayView::gatherOffsets (const Sampler& sampler, float s, float t, float r, int componentNdx, const IVec2 (&offsets)[4]) const
3480 return gatherArray2DOffsets(m_levels[0], sampler, s, t, selectLayer(r), componentNdx, offsets);