如何使用 LWJGL 进行离屏渲染?
我正在尝试找到一种使用 LWJGL 进行离屏渲染的方法。我想要做的是渲染某些内容并将其作为纹理保存在内存中,然后稍后使用它来纹理我在主窗口中绘制的形状。我很确定这应该使用帧缓冲区对象来完成,但我无法在网上找到任何有用的文档。我对 Open GL 和 LWJGL 相当陌生,所以我确信我缺少一些基本概念。
有人可以提供一个简单的示例,将屏幕外的某些内容(我不太关心什么)渲染为纹理吗?理想情况下,我希望最终得到一个 slick-util 纹理对象。
I'm trying to find a way to do rendering off screen with LWJGL. What I want to do is render something and keep it in memory as a texture, then at a later point use that to texture a shape I'm drawing in the main window. I'm pretty sure this should be done using a Frame Buffer Object, but I haven't been able to find any useful documentation online. I'm fairly new to Open GL and LWJGL so I'm sure there is some fundamental concept I'm missing.
Could someone possibly provide a simple example that renders something(I don't really care what) off screen to a texture? Ideally I would like to end up with a slick-util Texture object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个帧缓冲区对象并将其绑定为主渲染目标。这是一个教程:
http: //www.gamedev.net/page/resources/_/technical/opengl/opengl-frame-buffer-object-101-r2331
Create a frame buffer object and bind it as the primary render target. Here is a tutorial:
http://www.gamedev.net/page/resources/_/technical/opengl/opengl-frame-buffer-object-101-r2331