(&mut self)
| 151 | |
| 152 | impl Drop for Window { |
| 153 | fn drop(&mut self) { |
| 154 | unsafe { |
| 155 | SDL_GL_DestroyContext(self.gl); |
| 156 | SDL_DestroyWindow(self.window); |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | pub(crate) unsafe fn get_err() -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected