Welcome,
Guest
. Please
login
or
register
. Did you miss your
activation email?
French forum
Home
Help
Search
Login
Register
SFML community forums
»
Help
»
General
»
SFML and Qt
Print
Pages:
1
[
2
]
Author
Topic: SFML and Qt (Read 5207 times)
0 Members and 2 Guests are viewing this topic.
Laurent
Administrator
Hero Member
Posts: 32498
Re: SFML and Qt
«
Reply #15 on:
June 06, 2012, 09:10:18 am »
It was not stupid, it's also a good strategy to assume that everything may throw, and make all your code exception-safe. In this case you can do this:
window.
clear
(
)
;
{
sf
::
Lock
lock
(
m_mutex
)
;
window.
draw
(
sprite
)
;
}
window.
display
(
)
;
Logged
Laurent Gomila - SFML developer
Foaly
Sr. Member
Posts: 453
Re: SFML and Qt
«
Reply #16 on:
June 06, 2012, 09:14:15 am »
Ah ok. That is a good idea. I'll try that later. Thanks again for all the help.
Logged
Print
Pages:
1
[
2
]
SFML community forums
»
Help
»
General
»
SFML and Qt