| 6692 | |
| 6693 | #ifndef STBI_NO_PSD |
| 6694 | static int stbi__psd_test(stbi__context* s) { |
| 6695 | int r = (stbi__get32be(s) == 0x38425053); |
| 6696 | stbi__rewind(s); |
| 6697 | return r; |
| 6698 | } |
| 6699 | |
| 6700 | static int stbi__psd_decode_rle(stbi__context* s, stbi_uc* p, int pixelCount) { |
| 6701 | int count, nleft, len; |
no test coverage detected