Index: source/creator/creator.c =================================================================== --- source/creator/creator.c (r‚vision 13570) +++ source/creator/creator.c (copie de travail) @@ -198,7 +198,7 @@ printf (" \tTGA IRIS HAMX JPEG MOVIE IRIZ RAWTGA\n"); printf (" \tAVIRAW AVIJPEG PNG BMP FRAMESERVER\n"); printf (" (formats that can be compiled into blender, not available on all systems)\n"); - printf (" \tHDR TIFF EXR MPEG AVICODEC QUICKTIME CINEON DPX DDS\n"); + printf (" \tHDR TIFF EXR MULTILAYER MPEG AVICODEC QUICKTIME CINEON DPX DDS\n"); printf (" -x \tSet option to add the file extension to the end of the file.\n"); printf (" -t \tUse amount of for rendering\n"); /*Add these later - Campbell*/ @@ -674,9 +674,10 @@ else if (!strcmp(argv[a],"QUICKTIME")) G.scene->r.imtype = R_QUICKTIME; else if (!strcmp(argv[a],"BMP")) G.scene->r.imtype = R_BMP; else if (!strcmp(argv[a],"HDR")) G.scene->r.imtype = R_RADHDR; - else if (!strcmp(argv[a],"TIFF")) G.scene->r.imtype = R_IRIS; + else if (!strcmp(argv[a],"TIFF")) G.scene->r.imtype = R_TIFF; #ifdef WITH_OPENEXR else if (!strcmp(argv[a],"EXR")) G.scene->r.imtype = R_OPENEXR; + else if (!strcmp(argv[a],"MULTILAYER")) G.scene->r.imtype = R_MULTILAYER; #endif else if (!strcmp(argv[a],"MPEG")) G.scene->r.imtype = R_FFMPEG; else if (!strcmp(argv[a],"FRAMESERVER")) G.scene->r.imtype = R_FRAMESERVER; Index: source/blender/python/api2_2x/sceneRender.c =================================================================== --- source/blender/python/api2_2x/sceneRender.c (r‚vision 13570) +++ source/blender/python/api2_2x/sceneRender.c (copie de travail) @@ -994,6 +994,7 @@ #endif #ifdef WITH_OPENEXR case R_OPENEXR : + case R_MULTILAYER : #endif #ifdef WITH_FFMPEG case R_FFMPEG : @@ -3720,6 +3721,7 @@ PyModule_AddIntConstant( submodule, "SKYDOME", PY_SKYDOME ); PyModule_AddIntConstant( submodule, "GIFULL", PY_FULL ); PyModule_AddIntConstant( submodule, "OPENEXR", R_OPENEXR ); + PyModule_AddIntConstant( submodule, "MULTILAYER", R_MULTILAYER ); PyModule_AddIntConstant( submodule, "TIFF", R_TIFF ); PyModule_AddIntConstant( submodule, "FFMPEG", R_FFMPEG ); PyModule_AddIntConstant( submodule, "CINEON", R_CINEON );