HomeSort by relevance Sort by last modified time
    Searched refs:NEAREST (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_sampler.java 39 b.setMinification(Sampler.Value.NEAREST);
40 b.setMagnification(Sampler.Value.NEAREST);
85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
86 minification.getMagnification() == Sampler.Value.NEAREST);
98 _RS_ASSERT("magnification.getMinification() == Sampler.Value.NEAREST",
99 magnification.getMinification() == Sampler.Value.NEAREST);
107 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
108 wrapS.getMagnification() == Sampler.Value.NEAREST);
109 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
110 wrapS.getMinification() == Sampler.Value.NEAREST);
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_sampler.java 36 b.setMinification(Sampler.Value.NEAREST);
37 b.setMagnification(Sampler.Value.NEAREST);
81 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
82 minification.getMagnification() == Sampler.Value.NEAREST);
94 _RS_ASSERT("magnification.getMinification() == Sampler.Value.NEAREST",
95 magnification.getMinification() == Sampler.Value.NEAREST);
103 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
104 wrapS.getMagnification() == Sampler.Value.NEAREST);
105 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
106 wrapS.getMinification() == Sampler.Value.NEAREST);
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_sampler.java 38 b.setMinification(Sampler.Value.NEAREST);
39 b.setMagnification(Sampler.Value.NEAREST);
83 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
84 minification.getMagnification() == Sampler.Value.NEAREST);
96 _RS_ASSERT("magnification.getMinification() == Sampler.Value.NEAREST",
97 magnification.getMinification() == Sampler.Value.NEAREST);
105 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
106 wrapS.getMagnification() == Sampler.Value.NEAREST);
107 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
108 wrapS.getMinification() == Sampler.Value.NEAREST);
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Sampler.java 44 NEAREST (0),
105 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
115 b.setMinification(Value.NEAREST);
116 b.setMagnification(Value.NEAREST);
165 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
175 b.setMinification(Value.NEAREST);
176 b.setMagnification(Value.NEAREST);
225 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
235 b.setMinification(Value.NEAREST);
236 b.setMagnification(Value.NEAREST);
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_transfer.h 21 NEAREST = 0,
nv30_miptree.c 145 nv30_transfer_rect(nv30, NEAREST, &src, &dst);
312 nv30_transfer_rect(nv30, NEAREST, &tx->img, &tx->tmp);
343 nv30_transfer_rect(nv30, NEAREST, &tx->tmp, &tx->img);
  /frameworks/base/rs/java/android/renderscript/
Sampler.java 31 NEAREST (0),
93 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
105 b.setMinification(Value.NEAREST);
106 b.setMagnification(Value.NEAREST);
165 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
177 b.setMinification(Value.NEAREST);
178 b.setMagnification(Value.NEAREST);
237 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
249 b.setMinification(Value.NEAREST);
250 b.setMagnification(Value.NEAREST);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SamplerTest.java 33 mMinValues[0] = Sampler.Value.NEAREST;
39 mMagValues[0] = Sampler.Value.NEAREST;
124 assertEquals(Value.NEAREST, Value.valueOf("NEAREST"));
  /external/deqp/framework/common/
tcuTexVerifierUtil.hpp 86 return isLinearFilter(mode) ? Sampler::LINEAR : Sampler::NEAREST;
tcuTexture.cpp     [all...]
tcuTestLog.cpp 266 Sampler sampler (Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::LINEAR, Sampler::NEAREST);
304 Sampler sampler (Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
tcuTexLookupVerifier.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringAnisotropyTests.cpp 139 // Anisotropic filtering is implementation dependent. Expecting differences with minification/magnification filter set to NEAREST is too strict.
140 if (m_refParams.minFilter != tcu::Sampler::NEAREST && m_refParams.magFilter != tcu::Sampler::NEAREST)
204 "nearest",
209 Sampler::NEAREST,
vktTextureFilteringTests.cpp 221 const bool isNearestOnly = m_testParameters.minFilter == Sampler::NEAREST && m_testParameters.magFilter == Sampler::NEAREST;
224 const tcu::IVec4 colorBits = max(getBitsVec(pixelFormat) - (isNearestOnly ? 1 : 2), tcu::IVec4(0)); // 1 inaccurate bit if nearest only, 2 otherwise
443 const bool isNearestOnly = m_testParameters.minFilter == Sampler::NEAREST && m_testParameters.magFilter == Sampler::NEAREST;
446 const tcu::IVec4 colorBits = max(getBitsVec(pixelFormat) - (isNearestOnly ? 1 : 2), tcu::IVec4(0)); // 1 inaccurate bit if nearest only, 2 otherwise
649 const bool isNearestOnly = m_testParameters.minFilter == Sampler::NEAREST && m_testParameters.magFilter == Sampler::NEAREST;
652 const tcu::IVec4 colorBits = max(getBitsVec(pixelFormat) - (isNearestOnly ? 1 : 2), tcu::IVec4(0)); // 1 inaccurate bit if nearest only, 2 otherwise
    [all...]
vktTextureMipmapTests.cpp 262 const Sampler::FilterMode magFilter = Sampler::NEAREST;
772 const Sampler::FilterMode magFilter = Sampler::NEAREST;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureFormatTests.cpp 24 * + nearest-neighbor filtering
156 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
179 // Setup nearest neighbor filtering and clamp-to-edge.
327 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
348 // Setup nearest neighbor filtering and clamp-to-edge.
467 // Setup nearest neighbor filtering and clamp-to-edge.
482 refParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureFormatTests.cpp 24 * + nearest-neighbor filtering
172 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
195 // Setup nearest neighbor filtering and clamp-to-edge.
357 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
378 // Setup nearest neighbor filtering and clamp-to-edge.
519 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
535 // Setup nearest neighbor filtering and clamp-to-edge
    [all...]
es3fTextureSwizzleTests.cpp 158 renderParams.sampler = tcu::Sampler(tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::CLAMP_TO_EDGE, tcu::Sampler::NEAREST, tcu::Sampler::NEAREST);
174 // Setup nearest neighbor filtering and clamp-to-edge.
es3fASTCDecompressionCases.cpp 339 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
350 // Setup nearest neighbor filtering and clamp-to-edge.
  /hardware/interfaces/renderscript/1.0/
types.hal 152 NEAREST,
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp 924 case tcu::Sampler::NEAREST:
    [all...]
es31fTextureFormatTests.cpp 189 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
208 // Setup nearest neighbor filtering and clamp-to-edge.
es31fOpaqueTypeIndexingTests.cpp 589 tcu::Sampler::NEAREST, tcu::Sampler::NEAREST, 0.0f, false /* non-normalized */,
604 const float reference = refTexAccess.sample2DCompare(refSampler, tcu::Sampler::NEAREST, coord, (float)texNdx, 0.0f, tcu::IVec3(0));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureGatherTests.cpp     [all...]
  /external/deqp/framework/opengl/
gluTextureUtil.cpp     [all...]

Completed in 478 milliseconds

1 2 3 4 5 6 7