Tagged Questions
3
votes
2answers
1k views
Loading large bitmaps in Android
In a few games in the Android Market/Google Play Store, huge bitmaps are drawn onto the screen.
For example, the game Unicorn Dash:
and Robot Unicorn Attack:
I'm assuming the entire island ...
4
votes
2answers
212 views
How can I determine a budget for RAM used (LRU involving VRAM, in particular)
After some profiling, I've determined that one of my most expensive functions involves drawing text. As a solution, I'd like to implement a LRU type of cache that will "remember" the vertices, tex ...