Lines Matching refs:RenderScript
17 package android.renderscript;
32 * Memory allocation class for renderscript. An allocation combines a
33 * {@link android.renderscript.Type} with the memory to provide storage for user data and objects.
34 * This implies that all memory in Renderscript is typed.
57 * memory types. A {@link android.renderscript.Allocation#syncAll syncAll()}
69 * <p>For more information about creating an application that uses Renderscript, read the
70 * <a href="{@docRoot}guide/topics/graphics/renderscript.html">Renderscript</a> developer guide.</p>
97 * The usage of the allocation. These signal to renderscript
236 Allocation(int id, RenderScript rs, Type t, int usage) {
572 * renderscript script files.
592 * renderscript script files.
1007 * @param type renderscript type describing data layout
1013 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) {
1026 * Creates a renderscript allocation with the size specified by
1030 * @param type renderscript type describing data layout
1036 static public Allocation createTyped(RenderScript rs, Type type, int usage) {
1041 * Creates a renderscript allocation for use by the script with
1046 * @param type renderscript type describing data layout
1050 static public Allocation createTyped(RenderScript rs, Type type) {
1055 * Creates a renderscript allocation with a specified number of
1066 static public Allocation createSized(RenderScript rs, Element e,
1081 * Creates a renderscript allocation with a specified number of
1090 static public Allocation createSized(RenderScript rs, Element e, int count) {
1094 static Element elementFromBitmap(RenderScript rs, Bitmap b) {
1111 static Type typeFromBitmap(RenderScript rs, Bitmap b,
1122 * Creates a renderscript allocation from a bitmap
1131 * @return renderscript allocation containing bitmap data
1134 static public Allocation createFromBitmap(RenderScript rs, Bitmap b,
1205 * Creates a non-mipmapped renderscript allocation to use as a
1211 * @return renderscript allocation containing bitmap data
1214 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) {
1233 static public Allocation createCubemapFromBitmap(RenderScript rs, Bitmap b,
1280 static public Allocation createCubemapFromBitmap(RenderScript rs,
1304 static public Allocation createCubemapFromCubeFaces(RenderScript rs,
1370 static public Allocation createCubemapFromCubeFaces(RenderScript rs,
1383 * Creates a renderscript allocation from the bitmap referenced
1394 * @return renderscript allocation containing resource data
1397 static public Allocation createFromBitmapResource(RenderScript rs,
1411 * Creates a non-mipmapped renderscript allocation to use as a
1418 * @return renderscript allocation containing resource data
1421 static public Allocation createFromBitmapResource(RenderScript rs,
1430 * Creates a renderscript allocation containing string data
1439 static public Allocation createFromString(RenderScript rs,