如何使用 OpenGL 渲染但仍使用 SDL 处理事件?
我想确保我使用 OpenGL 进行 2d 渲染,但使用 SDL 进行事件。据我所知,SDL 使用软件渲染,而 OpenGL 是硬件加速的。我正在阅读一本关于 SDL 的书,但它还没有提到使用 OpenGL 进行渲染和使用 SDL 进行事件。
I want to make sure I am using OpenGL for 2d rendering, but SDL for events. From what I have heard SDL uses software rendering, and OpenGL is hardware accelerated. I am in the middle of reading one book on SDL, but it has not yet mentioned the use of OpenGL to render and SDL for events.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以首先阅读: http://www.gpwiki.org/index.php /SDL:Tutorials:Using_SDL_with_OpenGL
您将使用 SDL 创建一个 OpenGL 上下文,在其中执行所有基于 OpenGL 的渲染。
事件是指用户输入吗?如果是这样,那么只需在每个帧/循环的末尾使用 SDL 来检查输入,如下所示:
显然有更优雅和有效的方法来获取输入,但只是想展示一个简单的示例。
You can start by reading: http://www.gpwiki.org/index.php/SDL:Tutorials:Using_SDL_with_OpenGL
You will use SDL to create an OpenGL context within which you will do all of your OpenGL based rendering.
By events do you mean user input? If so, then simply at the end of each frame/loop make use of SDL to check for input like so:
Obviously there are much more elegant and effective means of getting input but just wanted to show a simple example.