| 1800 | // nothing |
| 1801 | #else |
| 1802 | static stbi__uint16 stbi__compute_y_16(int r, int g, int b) |
| 1803 | { |
| 1804 | return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8); |
| 1805 | } |
| 1806 | #endif |
| 1807 | |
| 1808 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) |
no outgoing calls
no test coverage detected