| 5327 | } |
| 5328 | |
| 5329 | static int stbi__png_is16(stbi__context *s) |
| 5330 | { |
| 5331 | stbi__png p; |
| 5332 | p.s = s; |
| 5333 | if (!stbi__png_info_raw(&p, NULL, NULL, NULL)) |
| 5334 | return 0; |
| 5335 | if (p.depth != 16) { |
| 5336 | stbi__rewind(p.s); |
| 5337 | return 0; |
| 5338 | } |
| 5339 | return 1; |
| 5340 | } |
| 5341 | #endif |
| 5342 | |
| 5343 | // Microsoft/Windows BMP image |
no test coverage detected