HomeSort by relevance Sort by last modified time
    Searched refs:sampleCompare (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/common/
tcuTexture.hpp 498 float sampleCompare (const Sampler& sampler, float ref, float s, float lod) const;
523 inline float Texture1DView::sampleCompare (const Sampler& sampler, float ref, float s, float lod) const
549 float sampleCompare (const Sampler& sampler, float ref, float s, float t, float lod) const;
577 inline float Texture2DView::sampleCompare (const Sampler& sampler, float ref, float s, float t, float lod) const
693 float sampleCompare (const Sampler& sampler, float ref, float s, float t, float lod) const;
725 inline float Texture2D::sampleCompare (const Sampler& sampler, float ref, float s, float t, float lod) const
727 return m_view.sampleCompare(sampler, ref, s, t, lod);
760 float sampleCompare (const Sampler& sampler, float ref, float s, float t, float r, float lod) const;
792 float sampleCompare (const Sampler& sampler, float ref, float s, float t, float r, float lod) const;
816 inline float TextureCube::sampleCompare (const Sampler& sampler, float ref, float s, float t, float r, float lod) cons
    [all...]
tcuTexture.cpp     [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp 384 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, lod), 0.0, 0.0, 1.0f);
392 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, t, lod), 0.0, 0.0, 1.0f);
400 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, t, r, lod), 0.0, 0.0, 1.0f);
408 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, t, r, lod), 0.0, 0.0, 1.0f);
416 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, t, r, q, lod), 0.0, 0.0, 1.0f);
424 return tcu::Vec4(src.sampleCompare(params.sampler, params.ref, s, t, lod), 0.0, 0.0, 1.0f);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp 284 inline float texture2DShadow (const gls::ShaderEvalContext& c, float ref, float s, float t, float lod) { return c.textures[0].tex2D->sampleCompare(c.textures[0].sampler, ref, s, t, lod); }
285 inline float textureCubeShadow (const gls::ShaderEvalContext& c, float ref, float s, float t, float r, float lod) { return c.textures[0].texCube->sampleCompare(c.textures[0].sampler, ref, s, t, r, lod); }
286 inline float texture2DArrayShadow (const gls::ShaderEvalContext& c, float ref, float s, float t, float r, float lod) { return c.textures[0].tex2DArray->sampleCompare(c.textures[0].sampler, ref, s, t, r, lod); }
    [all...]

Completed in 58 milliseconds