jahu00 / SamllHax.MapleSyrup

An attempt at implementing a single player Maple Story client
0 stars 0 forks source link

Replace SkBitmap with SkImage to improve performance #2

Closed jahu00 closed 1 year ago

jahu00 commented 1 year ago

Replacing SkBitmap with SkImage, should help with performance as SkBitmap creates a texture with each redraw and SkImage should point to a texture in GPUs RAM.

jahu00 commented 1 year ago

If this actually boosts the performance, going for SkPicture (for map tiles) might be a good idea as well.