HomeSort by relevance Sort by last modified time
    Searched refs:Sampler (Results 51 - 75 of 82) sorted by null

1 23 4

  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
FillTest.java 162 mFillScript.set_gLinearClamp(Sampler.CLAMP_LINEAR(mRS));
163 mFillScript.set_gLinearWrap(Sampler.WRAP_LINEAR(mRS));
UiTest.java 230 mUiScript.set_gLinearClamp(Sampler.CLAMP_LINEAR(mRS));
250 pfb.bindSampler(Sampler.WRAP_NEAREST(mRS), 0);
259 pfs.bindSampler(Sampler.WRAP_LINEAR_MIP_LINEAR(mRS), 0);
MeshTest.java 159 mGeoScript.set_gLinearClamp(Sampler.CLAMP_LINEAR(mRS));
TorusTest.java 255 mTorusScript.set_gLinearClamp(Sampler.CLAMP_LINEAR(mRS));
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 154 pfb.bindSampler(Sampler.WRAP_NEAREST(mRS), 0);
163 pfs.bindSampler(Sampler.WRAP_LINEAR(mRS), 0);
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselRS.java 382 mSingleTextureFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);
399 mSingleTextureBlendingFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);
415 mMultiTextureFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);
416 mMultiTextureFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 1);
432 mMultiTextureBlendingFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);
433 mMultiTextureBlendingFragmentProgram.bindSampler(Sampler.CLAMP_LINEAR(mRS), 1);
435 mScript.set_linearClamp(Sampler.CLAMP_LINEAR(mRS));
    [all...]
  /external/v8/src/
platform-win32.cc     [all...]
cpu-profiler.cc 223 // sampler writes w/o any sync to the queue, so if the processor
508 Sampler* sampler = reinterpret_cast<Sampler*>(isolate->logger()->ticker_); local
509 if (!sampler->IsActive()) {
510 sampler->Start();
513 sampler->IncreaseProfilingDepth();
549 Sampler* sampler = reinterpret_cast<Sampler*>(logger->ticker_) local
    [all...]
log.cc 81 // This design minimizes the time spent in the sampler.
188 class Ticker: public Sampler {
191 Sampler(isolate, interval),
1679 Sampler* Logger::sampler() { function in class:v8::internal::Logger
    [all...]
  /frameworks/rs/
rs_hal.h 45 class Sampler;
256 bool (*init)(const Context *rsc, const Sampler *m);
257 void (*destroy)(const Context *rsc, const Sampler *m);
258 } sampler; member in struct:android::renderscript::__anon18762
rsFont.h 212 ObjectBaseRef<Sampler> mFontSampler;
rsRuntime.h 35 void rsrBindSampler(Context *, Script *, ProgramFragment *, uint32_t slot, Sampler *);
rsScriptC_LibGL.cpp 67 void rsrBindSampler(Context *rsc, Script *sc, ProgramFragment *pf, uint32_t slot, Sampler *s) {
  /frameworks/support/renderscript/v8/rs_support/
rs_hal.h 45 class Sampler;
256 bool (*init)(const Context *rsc, const Sampler *m);
257 void (*destroy)(const Context *rsc, const Sampler *m);
258 } sampler; member in struct:android::renderscript::__anon18791
rsContext.cpp 404 Sampler *s = static_cast<Sampler *>(vs);
407 ALOGE("Invalid sampler slot");
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Vignette.java 21 import android.renderscript.Sampler;
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
FullscreenBlur.java 169 prog.getProgram().bindSampler(Sampler.CLAMP_LINEAR(rs), 0);
181 mPF_Texture.getProgram().bindSampler(Sampler.WRAP_LINEAR_MIP_LINEAR(rs), 0);
TestAppRS.java 145 pf.getProgram().bindSampler(Sampler.WRAP_LINEAR_MIP_LINEAR(mRS), 0);
147 pf.getProgram().bindSampler(Sampler.CLAMP_LINEAR_MIP_LINEAR(mRS), 1);
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 39 import android.renderscript.Sampler;
145 programFragmentGeometry.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 19 import android.renderscript.Sampler;
204 pf.bindSampler(Sampler.CLAMP_LINEAR(mRS), 0);