!!! FIXME: move this to a public API if we want to do float versions of all of these later */
| 2873 | |
| 2874 | /* !!! FIXME: move this to a public API if we want to do float versions of all of these later */ |
| 2875 | SDL_FORCE_INLINE SDL_bool SDL_FRectEmpty(const SDL_FRect *r) |
| 2876 | { |
| 2877 | return ((!r) || (r->w <= 0.0f) || (r->h <= 0.0f)) ? SDL_TRUE : SDL_FALSE; |
| 2878 | } |
| 2879 | |
| 2880 | /* !!! FIXME: move this to a public API if we want to do float versions of all of these later */ |
| 2881 | static SDL_bool |
no outgoing calls
no test coverage detected