diff options
author | Steve Block <steveblock@google.com> | 2011-10-20 11:56:00 +0100 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-01-19 14:44:31 -0800 |
commit | 06ade6ae1bd015e8b8ad0685847911213c93cc5b (patch) | |
tree | 0fb687dcbdf125a30cdb645605b57bb847d0c7b5 /graphics | |
parent | c318bbb05e02a0080e129623ec8029d31be0d60e (diff) | |
download | frameworks_base-06ade6ae1bd015e8b8ad0685847911213c93cc5b.zip frameworks_base-06ade6ae1bd015e8b8ad0685847911213c93cc5b.tar.gz frameworks_base-06ade6ae1bd015e8b8ad0685847911213c93cc5b.tar.bz2 |
Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF)
Change-Id: I5321ebd12e9c6248a108529e82c4e1af2a4405e3
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/jni/android_renderscript_RenderScript.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/jni/android_renderscript_RenderScript.cpp b/graphics/jni/android_renderscript_RenderScript.cpp index af03ee2..c4ef993 100644 --- a/graphics/jni/android_renderscript_RenderScript.cpp +++ b/graphics/jni/android_renderscript_RenderScript.cpp @@ -262,7 +262,7 @@ nContextGetErrorMessage(JNIEnv *_env, jobject _this, RsContext con) &receiveLen, sizeof(receiveLen), &subID, sizeof(subID)); if (!id && receiveLen) { - LOGV("message receive buffer too small. %i", receiveLen); + ALOGV("message receive buffer too small. %i", receiveLen); } return _env->NewStringUTF(buf); } @@ -280,7 +280,7 @@ nContextGetUserMessage(JNIEnv *_env, jobject _this, RsContext con, jintArray dat &receiveLen, sizeof(receiveLen), &subID, sizeof(subID)); if (!id && receiveLen) { - LOGV("message receive buffer too small. %i", receiveLen); + ALOGV("message receive buffer too small. %i", receiveLen); } _env->ReleaseIntArrayElements(data, ptr, 0); return id; @@ -709,7 +709,7 @@ nAllocationResize2D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint static int nFileA3DCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con, jint native_asset) { - LOGV("______nFileA3D %u", (uint32_t) native_asset); + ALOGV("______nFileA3D %u", (uint32_t) native_asset); Asset* asset = reinterpret_cast<Asset*>(native_asset); @@ -755,7 +755,7 @@ nFileA3DGetNumIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint file static void nFileA3DGetIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint numEntries, jintArray _ids, jobjectArray _entries) { - LOGV("______nFileA3D %u", (uint32_t) fileA3D); + ALOGV("______nFileA3D %u", (uint32_t) fileA3D); RsFileIndexEntry *fileEntries = (RsFileIndexEntry*)malloc((uint32_t)numEntries * sizeof(RsFileIndexEntry)); rsaFileA3DGetIndexEntries(con, fileEntries, (uint32_t)numEntries, (RsFile)fileA3D); @@ -771,7 +771,7 @@ nFileA3DGetIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D static int nFileA3DGetEntryByIndex(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint index) { - LOGV("______nFileA3D %u", (uint32_t) fileA3D); + ALOGV("______nFileA3D %u", (uint32_t) fileA3D); jint id = (jint)rsaFileA3DGetEntryByIndex(con, (uint32_t)index, (RsFile)fileA3D); return id; } |