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

  /frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
TestBase.java 34 public Allocation mOutPixelsAllocation;
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsRSActivity.java 64 private Allocation mOutPixelsAllocation;
174 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
198 mScript.forEach_root(mInPixelsAllocation, mOutPixelsAllocation);
199 mOutPixelsAllocation.ioSend();
216 mOutPixelsAllocation.setSurface(new Surface(surface));
224 mOutPixelsAllocation.setSurface(new Surface(surface));
230 mOutPixelsAllocation.setSurface(null);
  /frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 44 private Allocation mOutPixelsAllocation;
48 mOutPixelsAllocation = outAlloc;
57 mOutPixelsAllocation.setSurface(new Surface(surface));
63 mOutPixelsAllocation.setSurface(new Surface(surface));
65 filterAlloc(mOutPixelsAllocation, mSampler);
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
GroupTest.java 86 mGroup.setOutput(mMatrix.getKernelID(), mOutPixelsAllocation);
90 mMatrix.forEach(mScratchPixelsAllocation1, mOutPixelsAllocation);
TestBase.java 35 protected Allocation mOutPixelsAllocation;
93 mOutPixelsAllocation = ipact.mProcessor.mOutDisplayAllocationIO;
95 mOutPixelsAllocation = ipact.mProcessor.mOutDisplayAllocation1;
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
GroupTest.java 93 mGroup.setOutput(mMatrix.getKernelID(), mOutPixelsAllocation);
97 mMatrix.forEach(mScratchPixelsAllocation1, mOutPixelsAllocation);
TestBase.java 36 public Allocation mOutPixelsAllocation;
93 mOutPixelsAllocation = ipact.mProcessor.mOutPixelsAllocation;
ImageProcessingActivityJB.java 156 Allocation mOutPixelsAllocation;
233 mOutPixelsAllocation = mOutDisplayAllocation;
237 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(),
279 if (mOutDisplayAllocation != mOutPixelsAllocation) {
280 mOutDisplayAllocation.copyFrom(mOutPixelsAllocation);
351 if ((mOutSurface == null) || (mOutPixelsAllocation == null)) {
415 if (mOutDisplayAllocation != mOutPixelsAllocation) {
416 mOutDisplayAllocation.copyFrom(mOutPixelsAllocation);
460 if (mOutPixelsAllocation != mOutDisplayAllocation) {
461 mOutPixelsAllocation.destroy()
    [all...]
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
TestBase.java 45 protected Allocation mOutPixelsAllocation;
72 mOutPixelsAllocation = ipact.mOutPixelsAllocation;
99 mOutPixelsAllocation.copyTo(b);
Filters.java 374 b.addConnection(mOutPixelsAllocation.getType(),
396 mOutPixelsAllocation.getType(),
416 // mGroup.setOutput(mFilters[mIndices.length - 1].getKernelID(), mOutPixelsAllocation);
417 mGroup.setOutput(s_f2uc.getKernelID_f4touc4(), mOutPixelsAllocation);
421 mOutPixelsAllocation = (Allocation)mGroup2.execute(mInPixelsAllocation)[0];
430 mOutPixelsAllocation);
ScriptGroupTestActivity.java 56 Allocation mOutPixelsAllocation;
196 mOutPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapOut);
230 mOutPixelsAllocation = null;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CachingPipeline.java 60 protected volatile Allocation mOutPixelsAllocation;
133 if (mOutPixelsAllocation != null) {
134 mOutPixelsAllocation.destroy();
135 mOutPixelsAllocation = null;
447 if (mOutPixelsAllocation == null || mInPixelsAllocation == null ||
454 mOutPixelsAllocation = Allocation.createFromBitmap(RS, bitmapBuffer,
457 mOutPixelsAllocation.getType());
480 return mOutPixelsAllocation;
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
TestBase.java 45 protected Allocation mOutPixelsAllocation;
112 mOutPixelsAllocation = ipact.mOutPixelsAllocation;
139 mOutPixelsAllocation.copyTo(b);
ImageProcessingActivity.java 56 Allocation mOutPixelsAllocation;
416 mOutPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapOut);
467 mOutPixelsAllocation = null;

Completed in 361 milliseconds