diff options
author | Jason Sams <rjsams@android.com> | 2010-10-10 17:58:25 -0700 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2010-10-10 17:58:25 -0700 |
commit | 2222aa90031604e9752ebc2909303a84139b8b18 (patch) | |
tree | 221332fe04b58b792d1c40cfca730948cf4ccca5 /graphics/java/android/renderscript/RenderScript.java | |
parent | 7499a1ca68ba115efcf53f6a06520c579c44364d (diff) |
Cleanup error message for null binding address.
Only print the debug if script debugging is enabled.
Change-Id: I72b9c2a73d49987a73b354442e9defec02b93bc6
Implement inner utiliy class to specify surface formats.
Remove boxed bitmap upload functions.
Change-Id: I3ff5ca59e53d02b9d75277afa947ea3d218459eb
Diffstat (limited to 'graphics/java/android/renderscript/RenderScript.java')
-rw-r--r-- | graphics/java/android/renderscript/RenderScript.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/graphics/java/android/renderscript/RenderScript.java b/graphics/java/android/renderscript/RenderScript.java index 0088373b67d0..27c40fabe5de 100644 --- a/graphics/java/android/renderscript/RenderScript.java +++ b/graphics/java/android/renderscript/RenderScript.java @@ -194,10 +194,6 @@ public class RenderScript { synchronized int nAllocationCreateBitmapRef(int type, Bitmap bmp) { return rsnAllocationCreateBitmapRef(mContext, type, bmp); } - native int rsnAllocationCreateFromBitmapBoxed(int con, int dstFmt, boolean genMips, Bitmap bmp); - synchronized int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp) { - return rsnAllocationCreateFromBitmapBoxed(mContext, dstFmt, genMips, bmp); - } native int rsnAllocationCreateFromAssetStream(int con, int dstFmt, boolean genMips, int assetStream); synchronized int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream) { return rsnAllocationCreateFromAssetStream(mContext, dstFmt, genMips, assetStream); |