Destroys all the screens
| 185 | |
| 186 | // Destroys all the screens |
| 187 | void EfxDestroyAllScreens(void) { |
| 188 | for (int i = 0; i < MAX_TCEFFECTS; i++) { |
| 189 | if (TCEffects[i].type != EFX_NONE) { |
| 190 | tceffect *tce = &TCEffects[i]; |
| 191 | EfxFreeEffect(tce); |
| 192 | } |
| 193 | } |
| 194 | EfxInit(); |
| 195 | } |
| 196 | |
| 197 | // Destroys the screens within a monitor |
| 198 | void EfxDestroyScreen(int screen) { |
nothing calls this directly
no test coverage detected