Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
| 39 | |
| 40 | /* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */ |
| 41 | static void |
| 42 | quit(int rc) |
| 43 | { |
| 44 | SDLTest_CommonQuit(state); |
| 45 | exit(rc); |
| 46 | } |
| 47 | |
| 48 | SDL_Texture * |
| 49 | LoadTexture(SDL_Renderer *renderer, char *file, SDL_bool transparent) |
no test coverage detected