/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
| 449 | //! |
| 450 | //////////////////////////////////////////////////////////////////////////////// |
| 451 | void deleteTexture(GLuint *tex) |
| 452 | { |
| 453 | glDeleteTextures(1, tex); |
| 454 | SDK_CHECK_ERROR_GL(); |
| 455 | |
| 456 | *tex = 0; |
| 457 | } |
| 458 | |
| 459 | //////////////////////////////////////////////////////////////////////////////// |
| 460 | // Program main |
no outgoing calls
no test coverage detected