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

Commit 8369d0c1 authored by Kalesh Singh's avatar Kalesh Singh Committed by Automerger Merge Worker
Browse files

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

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

Change-Id: I931e9d46c39ec1750b061b0e8d3a8abd4320c9a7
parents 34b01ce3 1f5ba0b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;