标签: opengl graphics colors background
所以在openGL中我调用glClearColor()时有没有办法将背景颜色设置为纹理而不是将其设置为静态颜色?或者除了glClearColor()之外还有另一种方法吗?
答案 0 :(得分:6)
您无法将屏幕清除为纹理。你可以:
绘制一个与屏幕大小相符的纹理四边形。
Blit a texture from an FBO在屏幕上。
任何一个都可以。