FBO 分离纹理
如何设置 FBO,以便它在一次渲染过程中在两个单独的纹理中渲染深度和颜色缓冲区?
How do I set FBO so it renders depth and color buffer in two separate textures, in one rendering pass ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将合适的纹理附加到 FBO 深度附着点:
..并将另一个纹理附加到颜色附着点。请参阅了解更多信息。
Just attach a suitable texture to the FBOs depth attachment point:
.. and another texture to the color attachment point. See this for more information.