Searched refs:Allocation (Results 1 – 10 of 10) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
D | CachingPipeline.java | 27 import android.renderscript.Allocation; 56 private volatile Allocation mOriginalAllocation = null; 57 private volatile Allocation mFiltersOnlyOriginalAllocation = null; 59 protected volatile Allocation mInPixelsAllocation; 60 protected volatile Allocation mOutPixelsAllocation; 197 Allocation filtersOnlyOriginalAllocation = mFiltersOnlyOriginalAllocation; in updateOriginalAllocation() 198 mFiltersOnlyOriginalAllocation = Allocation.createFromBitmap(RS, originalBitmap, in updateOriginalAllocation() 199 Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); in updateOriginalAllocation() 204 Allocation originalAllocation = mOriginalAllocation; in updateOriginalAllocation() 206 mOriginalAllocation = Allocation.createFromBitmap(RS, mResizedOriginalBitmap, in updateOriginalAllocation() [all …]
|
D | Buffer.java | 21 import android.renderscript.Allocation; 30 private Allocation mAllocation; 42 mAllocation = Allocation.createFromBitmap(rs, mBitmap, in Buffer() 43 Allocation.MipmapControl.MIPMAP_NONE, in Buffer() 44 Allocation.USAGE_SHARED | Allocation.USAGE_SCRIPT); in Buffer() 68 public Allocation getAllocation() { in getAllocation()
|
D | PipelineInterface.java | 21 import android.renderscript.Allocation; 27 public Allocation getInPixelsAllocation(); in getInPixelsAllocation() 28 public Allocation getOutPixelsAllocation(); in getOutPixelsAllocation()
|
D | ImagePreset.java | 21 import android.renderscript.Allocation; 534 public void applyBorder(Allocation in, Allocation out, in applyBorder() 540 Allocation bitmapIn = in; in applyBorder() 542 bitmapIn = Allocation.createTyped( in applyBorder() 550 public void applyFilters(int from, int to, Allocation in, Allocation out, in applyFilters()
|
D | FilterEnvironment.java | 21 import android.renderscript.Allocation; 111 Allocation in, Allocation out) { in applyRepresentation()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/ |
D | BitmapProcessor.java | 21 import android.renderscript.Allocation; 53 Allocation input = null; in blur() 54 Allocation output = null; in blur() 74 input = Allocation.createFromBitmap(renderScript, inBitmap, in blur() 75 Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_GRAPHICS_TEXTURE); in blur() 76 output = Allocation.createFromBitmap(renderScript, outBitmap); in blur()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
D | RequestBuilder.java | 54 .Allocation { 80 private static interface Allocation { interface in RequestBuilder.RequestImpl 88 private final List<Allocation> mAllocations; 91 public RequestImpl(CaptureRequestBuilderProxy builder, List<Allocation> allocations, in RequestImpl() 101 for (Allocation allocation : mAllocations) { in allocateCaptureRequest() 114 for (Allocation allocation : mAllocations) { in abort() 122 private final List<RequestImpl.Allocation> mAllocations;
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
D | ImageUtils.java | 21 import android.renderscript.Allocation; 58 Allocation tmpIn = Allocation.createFromBitmap(rs, image); in blur() 59 Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap); in blur()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | ImageFilter.java | 22 import android.renderscript.Allocation; 71 public void apply(Allocation in, Allocation out) { in apply()
|
/packages/apps/Dialer/java/com/android/incallui/video/impl/ |
D | VideoCallFragment.java | 29 import android.renderscript.Allocation; 1311 Allocation allocationIn = Allocation.createFromBitmap(renderScript, image); in blur() 1312 Allocation allocationOut = Allocation.createFromBitmap(renderScript, image); in blur()
|