| 652 | } |
| 653 | |
| 654 | void Fbo::bindFramebuffer( GLenum target ) |
| 655 | { |
| 656 | // This in turn will call bindFramebufferImpl; indirection is so that the Context can update its cache of the active Fbo |
| 657 | gl::context()->bindFramebuffer( shared_from_this(), target ); |
| 658 | markAsDirty(); |
| 659 | } |
| 660 | |
| 661 | void Fbo::unbindFramebuffer() |
| 662 | { |
no test coverage detected