Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/IMB_imbuf.h
| Show First 20 Lines • Show All 374 Lines • ▼ Show 20 Lines | |||||
| * \attention Defined in scaling.c | * \attention Defined in scaling.c | ||||
| */ | */ | ||||
| struct ImBuf *IMB_onehalf(struct ImBuf *ibuf1); | struct ImBuf *IMB_onehalf(struct ImBuf *ibuf1); | ||||
| /** | /** | ||||
| * | * | ||||
| * \attention Defined in scaling.c | * \attention Defined in scaling.c | ||||
| */ | */ | ||||
| struct ImBuf *IMB_scaleImBuf(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | bool IMB_scaleImBuf(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | ||||
| /** | /** | ||||
| * | * | ||||
| * \attention Defined in scaling.c | * \attention Defined in scaling.c | ||||
| */ | */ | ||||
| struct ImBuf *IMB_scalefastImBuf(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | bool IMB_scalefastImBuf(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | ||||
| /** | /** | ||||
| * | * | ||||
| * \attention Defined in scaling.c | * \attention Defined in scaling.c | ||||
| */ | */ | ||||
| void IMB_scaleImBuf_threaded(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | void IMB_scaleImBuf_threaded(struct ImBuf *ibuf, unsigned int newx, unsigned int newy); | ||||
| /** | /** | ||||
| * | * | ||||
| * \attention Defined in writeimage.c | * \attention Defined in writeimage.c | ||||
| */ | */ | ||||
| short IMB_saveiff(struct ImBuf *ibuf, const char *filepath, int flags); | short IMB_saveiff(struct ImBuf *ibuf, const char *filepath, int flags); | ||||
| struct ImBuf *IMB_prepare_write_ImBuf(const bool isfloat, struct ImBuf *ibuf); | bool IMB_prepare_write_ImBuf(const bool isfloat, struct ImBuf *ibuf); | ||||
| /** | /** | ||||
| * | * | ||||
| * \attention Defined in util.c | * \attention Defined in util.c | ||||
| */ | */ | ||||
| bool IMB_ispic(const char *name); | bool IMB_ispic(const char *name); | ||||
| int IMB_ispic_type(const char *name); | int IMB_ispic_type(const char *name); | ||||
| ▲ Show 20 Lines • Show All 233 Lines • Show Last 20 Lines | |||||