Home
last modified time | relevance | path

Searched defs:STBI__CASE (Results 1 - 1 of 1) sorted by relevance

/third_party/astc-encoder/Source/
H A Dstb_image.h1772 #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) in stbi__convert_format() macro
1790 #undef STBI__CASE stbi__convert_format() macro
1829 #define STBI__CASE stbi__convert_format16() macro
1847 #undef STBI__CASE stbi__convert_format16() macro
4731 #define STBI__CASE stbi__create_png_image_raw() macro
4737 STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); } break; stbi__create_png_image_raw() function
4738 STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break; stbi__create_png_image_raw() function
4739 STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); } break; stbi__create_png_image_raw() function
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; stbi__create_png_image_raw() function
4741 STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); } break; stbi__create_png_image_raw() function
4742 STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],0,0)); } break; stbi__create_png_image_raw() function
4744 #undef STBI__CASE stbi__create_png_image_raw() macro
4748 #define STBI__CASE stbi__create_png_image_raw() macro
4753 STBI__CASE(STBI__F_none) { cur[k] = raw[k]; } break; stbi__create_png_image_raw() function
4754 STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k- output_bytes]); } break; stbi__create_png_image_raw() function
4755 STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break; stbi__create_png_image_raw() function
4756 STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k- output_bytes])>>1)); } break; stbi__create_png_image_raw() function
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; stbi__create_png_image_raw() function
4758 STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k- output_bytes] >> 1)); } break; stbi__create_png_image_raw() function
4759 STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break; stbi__create_png_image_raw() function
4761 #undef STBI__CASE stbi__create_png_image_raw() macro
[all...]

Completed in 10 milliseconds