| 1881 | // nothing |
| 1882 | #else |
| 1883 | static stbi__uint16 stbi__compute_y_16(int r, int g, int b) { |
| 1884 | return (stbi__uint16)(((r * 77) + (g * 150) + (29 * b)) >> 8); |
| 1885 | } |
| 1886 | #endif |
| 1887 | |
| 1888 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) |
no outgoing calls
no test coverage detected