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

1 2

  /frameworks/rs/java/tests/RSTest_CompatLib/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/java/tests/RsTest/src/com/android/rs/test/
UT_sampler.java 41 b.setMinification(Value.NEAREST);
42 b.setMagnification(Value.NEAREST);
87 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
88 minification.getMagnification() == Sampler.Value.NEAREST);
100 _RS_ASSERT("magnification.getMinification() == Sampler.Value.NEAREST",
101 magnification.getMinification() == Sampler.Value.NEAREST);
109 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
110 wrapS.getMagnification() == Sampler.Value.NEAREST);
111 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
112 wrapS.getMinification() == Sampler.Value.NEAREST);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 42 NEAREST (0),
103 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
113 b.setMinification(Value.NEAREST);
114 b.setMagnification(Value.NEAREST);
163 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
173 b.setMinification(Value.NEAREST);
174 b.setMagnification(Value.NEAREST);
223 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
233 b.setMinification(Value.NEAREST);
234 b.setMagnification(Value.NEAREST);
    [all...]
  /frameworks/support/v8/renderscript/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...]
SamplerThunker.java 46 case NEAREST:
47 return android.renderscript.Sampler.Value.NEAREST;
80 mMin = Value.NEAREST;
81 mMag = Value.NEAREST;
88 if (v == Value.NEAREST ||
99 if (v == Value.NEAREST || v == Value.LINEAR) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_transfer.h 21 NEAREST = 0,
nv30_miptree.c 143 nv30_transfer_rect(nv30, NEAREST, &src, &dst);
211 nv30_transfer_rect(nv30, NEAREST, &tx->img, &tx->tmp);
223 nv30_transfer_rect(nv30, NEAREST, &tx->tmp, &tx->img);
nv30_transfer.c 425 if (filter == NEAREST) {
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.h 21 NEAREST = 0,
nv30_miptree.c 143 nv30_transfer_rect(nv30, NEAREST, &src, &dst);
211 nv30_transfer_rect(nv30, NEAREST, &tx->img, &tx->tmp);
223 nv30_transfer_rect(nv30, NEAREST, &tx->tmp, &tx->img);
nv30_transfer.c 425 if (filter == NEAREST) {
  /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/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLTexture.cpp 91 case GraphicsContext3D::NEAREST:
103 case GraphicsContext3D::NEAREST:
242 if (m_magFilter != GraphicsContext3D::NEAREST || (m_minFilter != GraphicsContext3D::NEAREST && m_minFilter != GraphicsContext3D::NEAREST_MIPMAP_NEAREST))
361 if (m_isNPOT && ((m_minFilter != GraphicsContext3D::NEAREST && m_minFilter != GraphicsContext3D::LINEAR)
368 if (!m_isComplete && m_minFilter != GraphicsContext3D::NEAREST && m_minFilter != GraphicsContext3D::LINEAR)
WebGLRenderingContext.idl 299 const GLenum NEAREST = 0x2600;
303 /* NEAREST */
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassRS.java 292 samplerBuilder.setMinification(NEAREST);
293 samplerBuilder.setMagnification(NEAREST);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
FECustomFilter.cpp 258 m_context->getExtensions()->blitFramebuffer(0, 0, m_contextSize.width(), m_contextSize.height(), 0, 0, m_contextSize.width(), m_contextSize.height(), GraphicsContext3D::COLOR_BUFFER_BIT, GraphicsContext3D::NEAREST);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 3 import static android.renderscript.Sampler.Value.NEAREST;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext3D.h 254 NEAREST = 0x2600,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBuffer.cpp 707 // Use NEAREST, because there is no scale performed during the blit.
708 m_context->getExtensions()->blitFramebuffer(x, y, width, height, x, y, width, height, GraphicsContext3D::COLOR_BUFFER_BIT, GraphicsContext3D::NEAREST);
  /prebuilts/devtools/tools/lib/
lint-api.jar 
jcommon-1.0.12.jar 
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 585 milliseconds

1 2