| 7750 | } |
| 7751 | |
| 7752 | STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) |
| 7753 | { |
| 7754 | stbi__context s; |
| 7755 | stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); |
| 7756 | return stbi__is_16_main(&s); |
| 7757 | } |
| 7758 | |
| 7759 | #endif // STB_IMAGE_IMPLEMENTATION |
| 7760 |
nothing calls this directly
no test coverage detected