R_Shutdown
()
| 1302 | * R_Shutdown |
| 1303 | */ |
| 1304 | public void R_Shutdown() { |
| 1305 | Cmd.RemoveCommand("modellist"); |
| 1306 | Cmd.RemoveCommand("screenshot"); |
| 1307 | Cmd.RemoveCommand("imagelist"); |
| 1308 | Cmd.RemoveCommand("gl_strings"); |
| 1309 | |
| 1310 | Mod_FreeAll(); |
| 1311 | |
| 1312 | GL_ShutdownImages(); |
| 1313 | |
| 1314 | /* |
| 1315 | * shut down OS specific OpenGL stuff like contexts, etc. |
| 1316 | */ |
| 1317 | glImpl.shutdown(); |
| 1318 | } |
| 1319 | |
| 1320 | /** |
| 1321 | * R_BeginFrame |
nothing calls this directly
no test coverage detected