Hi,
I'm using the sf::Image to create an image of a map I've generated, the problem is that the map can be very huge (like 2000000px * 2000000px). But the size max of an sf::Image on my pc is 8192 * 8192.
I've decided to cut the map into different chunks so I can create Image of a smaller size.
But my pc has a "recent" graphic card, so I can do Images of 8192*8192, my question is, can I base the size of the chunk with the resolution of the user ?
For example, my resolution is 1920*1080, so I'll cut my chunks with this size, if a user has a resolution of 800*600, can I conclude I can do sf::Image of size 800*600 without having issues ?
Thanks !