HomeSort by relevance Sort by last modified time
    Searched defs:outAlloc (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
VLoadTest.java 28 Allocation outAlloc;
89 outAlloc = Allocation.createTyped(mRS, t);
91 script.set_gAllocOut(outAlloc);
93 scriptRelaxed.set_gAllocOut(outAlloc);
97 outAlloc.copyTo(a2);
104 outAlloc.copyFrom(a2);
108 outAlloc.copyTo(a2);
115 outAlloc.copyFrom(a2);
119 outAlloc.copyTo(a2);
126 outAlloc.copyFrom(a2)
    [all...]
  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 47 TextureViewUpdater(Allocation outAlloc, Sampler sampler) {
48 mOutPixelsAllocation = outAlloc;
118 Allocation outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage);
119 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS));
124 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage);
125 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS));
130 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage);
131 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS));
136 outAlloc = Allocation.createTyped(mRS, b.setX(outX).setY(outY).create(), usage);
137 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS))
    [all...]

Completed in 1856 milliseconds