------------------------------------------------------------------------------
| 688 | |
| 689 | //------------------------------------------------------------------------------ |
| 690 | void vtkTextureObject::SetInternalFormat(unsigned int glInternalFormat) |
| 691 | { |
| 692 | if (this->InternalFormat != glInternalFormat) |
| 693 | { |
| 694 | this->InternalFormat = glInternalFormat; |
| 695 | this->Modified(); |
| 696 | } |
| 697 | } |
| 698 | |
| 699 | //------------------------------------------------------------------------------ |
| 700 | static int vtkGetVTKType(GLenum gltype) |
no test coverage detected