Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25bdab42 authored by Kalesh Singh's avatar Kalesh Singh Committed by Automerger Merge Worker
Browse files

Merge "getGpuDmaBufUsageKb: Report usage in Kilobytes" am: 1f5ba0b2 am: 8369d0c1

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1763185

Change-Id: If6278ea2d86d8336bae8d9bd5cbdbc403e4c56fa
parents d0aafafd 8369d0c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -880,7 +880,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;