Tagged Questions
0
votes
2answers
296 views
Do rendered-to-textures need to be bound when being drawn to?
In OpenGL, if I'm rendering to a texture using a framebuffer, do I have to have that texture bound while I'm rendering to it? In code:
glBindTexture(...);
glTexImage2D(...);
glBindFramebuffer(...);
...