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

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java395 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:AllocationThunker
402 android.renderscript.Allocation.createFromBitmap(rst.mN, b,
H A DAllocation.java125 * #createFromBitmap} in API version 18 and higher.</p>
597 * #createFromBitmap} and {@link #USAGE_SHARED} is set on the Allocation,
1330 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:Allocation
1335 return AllocationThunker.createFromBitmap(rst, b, mips, usage);
1347 return createFromBitmap(rs, newBitmap, mips, usage);
1387 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { method in class:Allocation
1388 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1585 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/graphics/java/android/renderscript/
H A DAllocation.java154 * #createFromBitmap} in API version 18 and higher.</p>
682 * #createFromBitmap} and {@link #USAGE_SHARED} is set on the Allocation,
1491 static public Allocation createFromBitmap(RenderScript rs, Bitmap b, method in class:Allocation
1494 Trace.traceBegin(RenderScript.TRACE_TAG, "createFromBitmap");
1505 return createFromBitmap(rs, newBitmap, mips, usage);
1585 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) { method in class:Allocation
1587 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1590 return createFromBitmap(rs, b, MipmapControl.MIPMAP_NONE,
1784 Allocation alloc = createFromBitmap(rs, b, mips, usage);

Completed in 205 milliseconds