Home
last modified time | relevance | path

Searched refs:outAlloc (Results 1 – 2 of 2) sorted by relevance

/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
DSampleRSActivity.java47 TextureViewUpdater(Allocation outAlloc, Sampler sampler) { in TextureViewUpdater() argument
48 mOutPixelsAllocation = outAlloc; in TextureViewUpdater()
118 Allocation outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage); in onCreate() local
119 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS)); in onCreate()
124 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage); in onCreate()
125 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS)); in onCreate()
130 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage); in onCreate()
131 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS)); in onCreate()
136 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage); in onCreate()
137 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS)); in onCreate()
/frameworks/base/rs/java/android/renderscript/
DAllocation.java2939 Allocation outAlloc = new Allocation(id, rs, type, false, usage, mips); in createFromAllocation() local
2941 outAlloc.shareBufferQueue(alloc); in createFromAllocation()
2943 return outAlloc; in createFromAllocation()