Home
last modified time | relevance | path

Searched refs:createFromBitmap (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DErrorCalculator.java77 mIdealPixelsAllocation = Allocation.createFromBitmap(mRS, ideal, in calcErrorRS()
79 mGivenPixelsAllocation = Allocation.createFromBitmap(mRS, given, in calcErrorRS()
118 mIdealPixelsAllocation = Allocation.createFromBitmap(mRS, ideal, in calcErrorHeatmapRS()
120 mGivenPixelsAllocation = Allocation.createFromBitmap(mRS, given, in calcErrorHeatmapRS()
126 mOutputPixelsAllocation = Allocation.createFromBitmap(mRS, output, in calcErrorHeatmapRS()
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
DHealing.java87 Allocation dest_alloc = Allocation.createFromBitmap(rs, dest_bitmap); in heal()
90 Allocation src_alloc = Allocation.createFromBitmap(rs, src_bitmap); in heal()
91 Allocation mask_alloc = Allocation.createFromBitmap(rs, mask_bitmap); in heal()
137 Allocation dest_uc4 = Allocation.createFromBitmap(rs, destBitmap); in heal_orig()
143 Allocation src_uc4 = Allocation.createFromBitmap(rs, src); in heal_orig()
147 Allocation mask = Allocation.createFromBitmap(rs, maskBitmap); in heal_orig()
DFindRegion.java81 Allocation aImage = Allocation.createFromBitmap(mRs, image); in findMatch()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DImageBuffersForRenderScript.java35 inAllocation = Allocation.createFromBitmap(renderScript, inputImage); in ImageBuffersForRenderScript()
39 outAllocation = Allocation.createFromBitmap(renderScript, outputImage); in ImageBuffersForRenderScript()
/frameworks/rs/tests/lldb/java/DebugWaitAttach/src/com/android/rs/waitattachdebug/
DMainActivity.java58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
59 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in createScript()
/frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/com/android/rs/waitattachnodebug/
DMainActivity.java58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
59 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in createScript()
/frameworks/rs/tests/lldb/java/MultipleRSFiles/src/com/android/rs/multiplersfiles/
DMainActivity.java59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
60 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in createScript()
/frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/
DMainActivity.java97 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
100 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); in createScript()
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
DHealing.java92 Allocation dest_uc4 = Allocation.createFromBitmap(rs, destBitmap); in heal()
98 Allocation src_uc4 = Allocation.createFromBitmap(rs, src); in heal()
102 Allocation mask = Allocation.createFromBitmap(rs, maskBitmap); in heal()
DFindRegion.java99 findRegion.set_image(Allocation.createFromBitmap(mRs, image)); in findMatch()
/frameworks/rs/tests/lldb/java/KernelVariables/src/com/android/rs/kernelvariables/
DMainActivity.java59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
60 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in createScript()
/frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
DSampleRSActivity.java102 mTwoByTwoAlloc = Allocation.createFromBitmap(mRS, mBitmapTwoByTwo, in onCreate()
106 mCityAlloc = Allocation.createFromBitmap(mRS, mBitmapCity, in onCreate()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
DRefocusFilterF32.java83 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap); in extractSharpImage()
96 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap); in extractFuzzyImage()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
DRefocusFilterd1new.java85 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap); in extractSharpImage()
98 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap); in extractFuzzyImage()
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
DBallsRS.java80 Allocation.createFromBitmap(mRS, bp, in loadTexture()
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DAllocation.java2680 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, in createFromBitmap() method in Allocation
2693 return createFromBitmap(rs, newBitmap, mips, usage); in createFromBitmap()
2748 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { in createFromBitmap() method in Allocation
2749 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE, in createFromBitmap()
2946 Allocation alloc = createFromBitmap(rs, b, mips, usage); in createFromBitmapResource()
/frameworks/base/rs/java/android/renderscript/
DAllocation.java2793 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, in createFromBitmap() method in Allocation
2808 return createFromBitmap(rs, newBitmap, mips, usage); in createFromBitmap()
3061 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { in createFromBitmap() method in Allocation
3063 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE, in createFromBitmap()
3066 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE, in createFromBitmap()
3260 Allocation alloc = createFromBitmap(rs, b, mips, usage); in createFromBitmapResource()
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
DMainActivity.java424 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in runScript()
426 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in runScript()
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DImageProcessingActivity2.java234 mOutDisplayAllocation1 = Allocation.createFromBitmap(mRS, mBitmapOut1); in Processor()
235 mOutDisplayAllocation2 = Allocation.createFromBitmap(mRS, mBitmapOut2); in Processor()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
DCamera2Source.java183 mAllocationOut = Allocation.createFromBitmap(mRS, mBitmap); in onOpen()
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
DScriptGroupTestActivity.java196 mOutPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in init()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
DViewfinderProcessor.java267 img_alloc = Allocation.createFromBitmap(mRs, image); in processImage()
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
DImageProcessingActivity.java416 mOutPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapOut); in init()
/frameworks/support/api/
D23.0.0.txt9970 …method public static android.support.v8.renderscript.Allocation createFromBitmap(android.support.v…
9971 …method public static android.support.v8.renderscript.Allocation createFromBitmap(android.support.v…
D23.1.1.txt10358 …method public static android.support.v8.renderscript.Allocation createFromBitmap(android.support.v…
10359 …method public static android.support.v8.renderscript.Allocation createFromBitmap(android.support.v…

12