/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
| 641 | //! |
| 642 | //////////////////////////////////////////////////////////////////////////////// |
| 643 | void deleteTexture(GLuint *tex) |
| 644 | { |
| 645 | glDeleteTextures(1, tex); |
| 646 | SDK_CHECK_ERROR_GL(); |
| 647 | |
| 648 | *tex = 0; |
| 649 | } |
| 650 | |
| 651 | //////////////////////////////////////////////////////////////////////////////// |
| 652 | //! |
no outgoing calls
no test coverage detected