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

Commit 1c40e5cd 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 am: 25bdab42

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

Change-Id: Icc281dac1b8eae1700db6ece08e97f3126de295c
parents d939cffe 25bdab42
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;