SFML community forums
Help => Graphics => Topic started by: slotdev on July 18, 2013, 12:09:47 pm
-
Hi
Normally we load all graphics when the game starts. Sadly we have had to make changes to speed up the initial loading time (customer requirements..) so now we load graphics during other stages in the game.
Our problem is, when we do this, we sometimes notice corruption/display of graphics on an incorrect window (we use two windows for our games).
I can't give a minimal example, as it's hard to reproduce, and I don't think its an SFML issue anyway. Does anyone have any ideas?
Does the window(s) have to be inactive (window.setActive(false)) before you load a graphic?
Thanks
Ed
-
Is it the loaded graphics that are corrupted? What do you mean by "incorrect window"? Do you load things in a thread? On which OS(es) does it happen?
Does the window(s) have to be inactive (window.setActive(false)) before you load a graphic?
No.
-
Is it the loaded graphics that are corrupted? What do you mean by "incorrect window"? Do you load things in a thread? On which OS(es) does it happen?
Does the window(s) have to be inactive (window.setActive(false)) before you load a graphic?
No.
OK we have fixed this, but anyway, the problem was that when we loaded a graphic, the next time you tried to render something to the second window (anything, it seems) then it will for 1 frame only, display the graphic just loaded.
We found that calling setActive(false) on BOTH windows prior to loading the graphic, has fixed this.
Windows 7/XP, no threading involved.