Searched defs:createFromBitmap (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java409 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:AllocationThunker
416 android.renderscript.Allocation.createFromBitmap(rst.mN, b,
H A DAllocation.java125 * #createFromBitmap} in API version 18 and higher.</p>
600 * #createFromBitmap} and {@link #USAGE_SHARED} is set on the Allocation,
1335 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:Allocation
1340 return AllocationThunker.createFromBitmap(rst, b, mips, usage);
1352 return createFromBitmap(rs, newBitmap, mips, usage);
1392 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { method in class:Allocation
1393 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1590 Allocation alloc = createFromBitmap(rs, b, mips, usage);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DSceneManager.java165 static Allocation createFromBitmap(Bitmap b, RenderScriptGL rs, boolean isCube) { method in class:SceneManager
174 return Allocation.createFromBitmap(rs, b, mip, usage);
178 return createFromBitmap(loadBitmap(name, res), rs, true);
182 return createFromBitmap(BitmapFactory.decodeResource(res, id), rs, true);
186 return createFromBitmap(loadBitmap(name, res), rs, false);
190 return createFromBitmap(BitmapFactory.decodeResource(res, id), rs, false);
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java208 * #createFromBitmap} in API version 18 and higher.</p>
731 * #createFromBitmap} and {@link #USAGE_SHARED} is set on the Allocation,
1507 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:Allocation
1510 Trace.traceBegin(RenderScript.TRACE_TAG, "createFromBitmap");
1521 return createFromBitmap(rs, newBitmap, mips, usage);
1594 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { method in class:Allocation
1596 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1599 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1793 Allocation alloc = createFromBitmap(rs, b, mips, usage);

Completed in 101 milliseconds