screeps-rs icon indicating copy to clipboard operation
screeps-rs copied to clipboard

Move map-view rendering into cached textures

Open daboross opened this issue 6 years ago • 0 comments

https://github.com/daboross/screeps-rs/commit/6e730b9aa4e126cfc6567d16f5fd2818ad80d3a4 and subsequent commits switched terrain rendering to doing CPU rendering into a texture, then passing that texture to the GPU to display. Doing this for map-view as well would be beneficial!

Even though it's CPU rendering instead of GPU, the advantage is that the rendering only has to be done once per update, rather than once per 16ms (minimum display update time). Migrating terrain over greatly sped up scrolling and reduced lag, moving map-view would be even better.

daboross avatar Jan 04 '18 05:01 daboross