Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/IMB_imbuf.h
| Show First 20 Lines • Show All 591 Lines • ▼ Show 20 Lines | |||||
| void bilinear_interpolation_color( | void bilinear_interpolation_color( | ||||
| struct ImBuf *in, unsigned char col[4], float col_float[4], float u, float v); | struct ImBuf *in, unsigned char col[4], float col_float[4], float u, float v); | ||||
| void bilinear_interpolation_color_wrap( | void bilinear_interpolation_color_wrap( | ||||
| struct ImBuf *in, unsigned char col[4], float col_float[4], float u, float v); | struct ImBuf *in, unsigned char col[4], float col_float[4], float u, float v); | ||||
| void IMB_alpha_under_color_float(float *rect_float, int x, int y, float backcol[3]); | void IMB_alpha_under_color_float(float *rect_float, int x, int y, float backcol[3]); | ||||
| void IMB_alpha_under_color_byte(unsigned char *rect, int x, int y, float backcol[3]); | void IMB_alpha_under_color_byte(unsigned char *rect, int x, int y, float backcol[3]); | ||||
| void IMB_sampleImageAtLocation( | |||||
| struct ImBuf *ibuf, float x, float y, bool make_linear_rgb, float color[4]); | |||||
| /** | /** | ||||
| * | * | ||||
| * \attention defined in readimage.c | * \attention defined in readimage.c | ||||
| */ | */ | ||||
| struct ImBuf *IMB_loadifffile( | struct ImBuf *IMB_loadifffile( | ||||
| int file, const char *filepath, int flags, char colorspace[IM_MAX_SPACE], const char *descr); | int file, const char *filepath, int flags, char colorspace[IM_MAX_SPACE], const char *descr); | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 151 Lines • Show Last 20 Lines | |||||