Get the texture unit --------------------------------------------------------------------------
| 270 | // Get the texture unit |
| 271 | //-------------------------------------------------------------------------- |
| 272 | int GetTextureUnit() |
| 273 | { |
| 274 | if (!this->Texture) |
| 275 | { |
| 276 | return -1; |
| 277 | } |
| 278 | return this->Texture->GetTextureUnit(); |
| 279 | } |
| 280 | |
| 281 | //-------------------------------------------------------------------------- |
| 282 | void ReleaseGraphicsResources(vtkWindow* window) |
nothing calls this directly
no test coverage detected