diff options
author | Jason Sams <rjsams@android.com> | 2010-10-26 13:09:17 -0700 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2010-10-26 13:09:17 -0700 |
commit | 31a7e42f4baa059352f0db119de38428e655eab2 (patch) | |
tree | 7e3bf245244215cad507f57c24043f20a91bcd8c /graphics/jni | |
parent | cd44bf9c7ae89edcf906451e162d096cf3d7e561 (diff) | |
download | frameworks_base-31a7e42f4baa059352f0db119de38428e655eab2.zip frameworks_base-31a7e42f4baa059352f0db119de38428e655eab2.tar.gz frameworks_base-31a7e42f4baa059352f0db119de38428e655eab2.tar.bz2 |
Begin adding async allocation creation.
Change-Id: I5d1381699e2b334c1d824f357bd6b310a5f79be8
Implement async bitmap upload and clean up types.
Change-Id: Icbe9894e04c1319351c1cd75b0e0017855198f20
Diffstat (limited to 'graphics/jni')
-rw-r--r-- | graphics/jni/android_renderscript_RenderScript.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/jni/android_renderscript_RenderScript.cpp b/graphics/jni/android_renderscript_RenderScript.cpp index 16d5bfe..dd108c0 100644 --- a/graphics/jni/android_renderscript_RenderScript.cpp +++ b/graphics/jni/android_renderscript_RenderScript.cpp @@ -377,7 +377,7 @@ static jint nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint e) { LOG_API("nAllocationCreateTyped, con(%p), e(%p)", con, (RsElement)e); - return (jint) rsAllocationCreateTyped(con, (RsElement)e); + return (jint) rsaAllocationCreateTyped(con, (RsElement)e); } static void @@ -428,7 +428,7 @@ nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint dst const int w = bitmap.width(); const int h = bitmap.height(); const void* ptr = bitmap.getPixels(); - jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr); + jint id = (jint)rsaAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr); bitmap.unlockPixels(); return id; } @@ -488,7 +488,7 @@ nAllocationCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con, jin const int w = bitmap.width(); const int h = bitmap.height(); const void* ptr = bitmap.getPixels(); - jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr); + jint id = (jint)rsaAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr); bitmap.unlockPixels(); return id; } |