OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gatherOffsets
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/common/
tcuTexture.hpp
552
Vec4
gatherOffsets
(const Sampler& sampler, float s, float t, int componentNdx, const IVec2 (&offsets)[4]) const;
587
inline Vec4 Texture2DView::
gatherOffsets
(const Sampler& sampler, float s, float t, int componentNdx, const IVec2 (&offsets)[4]) const
696
Vec4
gatherOffsets
(const Sampler& sampler, float s, float t, int componentNdx, const IVec2 (&offsets)[4]) const;
735
inline Vec4 Texture2D::
gatherOffsets
(const Sampler& sampler, float s, float t, int componentNdx, const IVec2 (&offsets)[4]) const
737
return m_view.
gatherOffsets
(sampler, s, t, componentNdx, offsets);
[
all
...]
/external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp
508
static tcu::Vector<ColorScalarType, 4>
gatherOffsets
(const tcu::Texture2DView& texture, const tcu::Sampler& sampler, const Vec2& coord, int componentNdx, const IVec2 (&offsets)[4])
510
return texture.
gatherOffsets
(sampler, coord.x(), coord.y(), componentNdx, offsets).cast<ColorScalarType>();
514
static tcu::Vector<ColorScalarType, 4>
gatherOffsets
(const tcu::Texture2DArrayView& texture, const tcu::Sampler& sampler, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4])
516
return texture.
gatherOffsets
(sampler, coord.x(), coord.y(), coord.z(), componentNdx, offsets).cast<ColorScalarType>();
520
static tcu::Vector<ColorScalarType, 4>
gatherOffsets
(const tcu::TextureCubeView& texture, const tcu::Sampler& sampler, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4])
601
const ColorVec idealPix =
gatherOffsets
<ColorScalarType>(texture, sampler, texCoord, componentNdx, offsets);
[
all
...]
Completed in 411 milliseconds