| 232 | } |
| 233 | |
| 234 | void FramebufferData::bindTexture( bool color, bool depth ) |
| 235 | { |
| 236 | if ( color ) |
| 237 | resColorTexture_.bind(); |
| 238 | if ( depth && resDepthTexture_.valid() ) |
| 239 | resDepthTexture_.bind(); |
| 240 | } |
| 241 | |
| 242 | void FramebufferData::copyTextureBindDef() |
| 243 | { |
no test coverage detected