Home | History | Annotate | Download | only in sample

Lines Matching refs:sampler

30 import android.renderscript.Sampler;
44 private Sampler mSampler;
46 TextureViewUpdater(Allocation outAlloc, Sampler sampler) {
48 mSampler = sampler;
115 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS));
121 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS));
127 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS));
133 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS));
151 private synchronized void filterAlloc(Allocation alloc, Sampler sampler) {
153 mScript.invoke_setSampleData(alloc, mTwoByTwoAlloc, sampler);