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

Commit 0e4cbd2c 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

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

Change-Id: Iff14a427e487119f2fb51a861168dec663bfaf63
parents e9bfc9c4 34ce3656
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;