Searched refs:stbi__paeth (Results 1 - 1 of 1) sorted by relevance
/third_party/astc-encoder/Source/ |
H A D | stb_image.h | 4636 static int stbi__paeth(int a, int b, int c) in stbi__paeth() function 4702 case STBI__F_paeth : cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(0,prior[k],0)); break; in stbi__create_png_image_raw() 4740 STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],prior[k],prior[k-filter_bytes])); } break; in stbi__create_png_image_raw() 4742 STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],0,0)); } break; in stbi__create_png_image_raw() 4757 STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],prior[k],prior[k- output_bytes])); } break; in stbi__create_png_image_raw() 4759 STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break; in stbi__create_png_image_raw()
|
Completed in 12 milliseconds