()
| 19 | glut.glutDestroyWindow(glut.glutGetWindow()) |
| 20 | |
| 21 | def display(): |
| 22 | gl.glClear (gl.GL_COLOR_BUFFER_BIT | gl.GL_DEPTH_BUFFER_BIT) |
| 23 | glut.glutSwapBuffers() |
| 24 | |
| 25 | def resize(width,height): |
| 26 | gl.glViewport(0, 0, width, height+4) |
nothing calls this directly
no outgoing calls
no test coverage detected