| 1780 | // only failure mode is malloc failing |
| 1781 | |
| 1782 | static stbi_uc stbi__compute_y(int r, int g, int b) { |
| 1783 | return (stbi_uc)(((r * 77) + (g * 150) + (29 * b)) >> 8); |
| 1784 | } |
| 1785 | #endif |
| 1786 | |
| 1787 | #if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && \ |
no outgoing calls
no test coverage detected