Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What takes up graphics memory in Android Profiler?

When I used Android profiler I noticed that graphics were Taking a lot of memory (169 mb) which was making the app extremely slow , and I though that it was caused by Bitmaps so I deleted all the bitmaps in the app and tried again..

and I noticed that graphics were still taking up 60 - 100 mb of RAM , and I would like to know what can cause Memory Drain other than Bitmaps? (My App uses google Maps if that helps)

like image 302
Taha Elkhaoua Avatar asked Nov 08 '22 03:11

Taha Elkhaoua


1 Answers

Graphics: Memory used for graphics buffer queues to display pixels to the screen, including GL surfaces, GL textures, and so on. (Note that this is memory shared with the CPU, not dedicated GPU memory.)

https://developer.android.com/studio/profile/memory-profiler.html

like image 103
zhaoinchun Avatar answered Nov 15 '22 04:11

zhaoinchun