| 2720 | } |
| 2721 | |
| 2722 | void Viewer::bindSceneTexture( bool bind ) |
| 2723 | { |
| 2724 | if ( !sceneTexture_ ) |
| 2725 | return; |
| 2726 | if ( bind ) |
| 2727 | sceneTexture_->bind( false ); |
| 2728 | else |
| 2729 | sceneTexture_->unbind(); |
| 2730 | } |
| 2731 | |
| 2732 | bool Viewer::isSceneTextureEnabled() const |
| 2733 | { |
no test coverage detected