SFML白窗
由于某些奇怪的原因,我的 SFML 程序不会呈现任何内容,直到我将鼠标悬停在它上面,或按下某个键或执行任何符合事件资格的操作。
我该如何解决这个问题?
For some odd reason my SFML program won't render anything until I mouse over it, or press a key or do anything that qualifies as an event.
How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将鼠标悬停在上面时,将会向应用程序发送一条消息。因此,您的主循环可能写得不正确,因此在收到消息之前它不会呈现。但这是一个随机猜测,您应该考虑始终将代码与问题一起发布。
When you mouse over, this causes a message to be sent to the application. So probably you have your main loop written incorrectly, so that it won't render until a message is received. But this is a random guess, you should consider always posting your code together with your question.