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