Changeset View
Changeset View
Standalone View
Standalone View
source/blender/render/intern/pipeline.c
| Context not available. | |||||
| if (write_still && !G.is_break) { | if (write_still && !G.is_break) { | ||||
| if (BKE_imtype_is_movie(rd.im_format.imtype)) { | if (BKE_imtype_is_movie(rd.im_format.imtype)) { | ||||
| /* operator checks this but in case its called from elsewhere */ | /* operator checks this but in case its called from elsewhere */ | ||||
| printf("Error: cant write single images with a movie format!\n"); | printf("Error: can't write single images with a movie format!\n"); | ||||
| } | } | ||||
| else { | else { | ||||
| char name[FILE_MAX]; | char name[FILE_MAX]; | ||||
| Context not available. | |||||
| void RE_layer_load_from_file( | void RE_layer_load_from_file( | ||||
| RenderLayer *layer, ReportList *reports, const char *filename, int x, int y) | RenderLayer *layer, ReportList *reports, const char *filename, int x, int y) | ||||
| { | { | ||||
| /* OCIO_TODO: assume layer was saved in defaule color space */ | /* OCIO_TODO: assume layer was saved in default color space */ | ||||
| ImBuf *ibuf = IMB_loadiffname(filename, IB_rect, NULL); | ImBuf *ibuf = IMB_loadiffname(filename, IB_rect, NULL); | ||||
| RenderPass *rpass = NULL; | RenderPass *rpass = NULL; | ||||
| Context not available. | |||||