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

Commit 12989af9 authored by Kalesh Singh's avatar Kalesh Singh Committed by Automerger Merge Worker
Browse files

Merge "getGpuDmaBufUsageKb: Report usage in Kilobytes" into sc-dev am: 34ce3656 am: 0e4cbd2c

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

Change-Id: Iaba445ca3607adf25694233aa418be0bdb425290
parents 390463c1 0e4cbd2c
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;