Lines Matching full:renderscript
17 package android.renderscript;
30 * Memory allocation class for renderscript. An allocation combines a
31 * {@link android.renderscript.Type} with the memory to provide storage for user data and objects.
32 * This implies that all memory in Renderscript is typed.
55 * memory types. A {@link android.renderscript.Allocation#syncAll syncAll()}
67 * <p>For more information about creating an application that uses Renderscript, read the
68 * <a href="{@docRoot}guide/topics/graphics/renderscript.html">Renderscript</a> developer guide.</p>
93 * The usage of the allocation. These signal to renderscript
184 Allocation(int id, RenderScript rs, Type t, int usage) {
455 * renderscript script files.
474 * renderscript script files.
867 * @param type renderscript type describing data layout
873 static public Allocation createTyped(RenderScript rs, Type type, MipmapControl mips, int usage) {
886 * Creates a renderscript allocation with the size specified by
890 * @param type renderscript type describing data layout
896 static public Allocation createTyped(RenderScript rs, Type type, int usage) {
901 * Creates a renderscript allocation for use by the script with
906 * @param type renderscript type describing data layout
910 static public Allocation createTyped(RenderScript rs, Type type) {
915 * Creates a renderscript allocation with a specified number of
926 static public Allocation createSized(RenderScript rs, Element e,
941 * Creates a renderscript allocation with a specified number of
950 static public Allocation createSized(RenderScript rs, Element e, int count) {
954 static Element elementFromBitmap(RenderScript rs, Bitmap b) {
971 static Type typeFromBitmap(RenderScript rs, Bitmap b,
982 * Creates a renderscript allocation from a bitmap
991 * @return renderscript allocation containing bitmap data
994 static public Allocation createFromBitmap(RenderScript rs, Bitmap b,
1008 * Creates a non-mipmapped renderscript allocation to use as a
1014 * @return renderscript allocation containing bitmap data
1017 static public Allocation createFromBitmap(RenderScript rs, Bitmap b) {
1036 static public Allocation createCubemapFromBitmap(RenderScript rs, Bitmap b,
1083 static public Allocation createCubemapFromBitmap(RenderScript rs,
1107 static public Allocation createCubemapFromCubeFaces(RenderScript rs,
1173 static public Allocation createCubemapFromCubeFaces(RenderScript rs,
1186 * Creates a renderscript allocation from the bitmap referenced
1197 * @return renderscript allocation containing resource data
1200 static public Allocation createFromBitmapResource(RenderScript rs,
1214 * Creates a non-mipmapped renderscript allocation to use as a
1221 * @return renderscript allocation containing resource data
1224 static public Allocation createFromBitmapResource(RenderScript rs,
1233 * Creates a renderscript allocation containing string data
1242 static public Allocation createFromString(RenderScript rs,