Merge "getGpuDmaBufUsageKb: Report usage in Kilobytes"

This commit is contained in:
Kalesh Singh 2021-07-12 16:49:16 +00:00 committed by Gerrit Code Review
commit 1f5ba0b268

View File

@ -877,7 +877,7 @@ static jlong android_os_Debug_getGpuDmaBufUsageKb(JNIEnv* env, jobject clazz) {
continue;
}
sizeKb += importer_info->second.size;
sizeKb += importer_info->second.size / 1024;
}
return sizeKb;