| 1720 | |
| 1721 | #ifndef STBI_NO_BMP |
| 1722 | static stbi__uint32 stbi__get32le(stbi__context *s) |
| 1723 | { |
| 1724 | stbi__uint32 z = stbi__get16le(s); |
| 1725 | z += (stbi__uint32)stbi__get16le(s) << 16; |
| 1726 | return z; |
| 1727 | } |
| 1728 | #endif |
| 1729 | |
| 1730 | #define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings |
no test coverage detected