在重塑中调用 display() 而不是 glutPostRedisplay() ?
在reshape()
函数中,我可以简单地调用回调函数display()
而不是glutPostRedisplay()
吗?
In reshape()
function, can I simply call the callback function display()
instead of glutPostRedisplay()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以,但这不是一个好主意。只需让消息处理程序完成其工作即可。
如果您需要对消息处理和渲染进行更多控制,则应使用 GLFW。
You could, but it wouldn't be a good idea. Just let the message handler do its job.
If you need more control over message handling and rendering, you should use GLFW.