[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60776] trunk/blender/source/blender/ makesrna/intern/rna_scene.c: removing PSD from the fileformat list fix [ #37080] The file which I stored in PSD file format in Blender cannot open by Photoshop

Dalai Felinto dfelinto at gmail.com
Tue Oct 15 16:32:34 CEST 2013


Revision: 60776
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60776
Author:   dfelinto
Date:     2013-10-15 14:32:33 +0000 (Tue, 15 Oct 2013)
Log Message:
-----------
removing PSD from the fileformat list fix [#37080] The file which I stored in PSD file format in Blender cannot open by Photoshop
PSD writing is not supported at the moment

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2013-10-15 13:55:06 UTC (rev 60775)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2013-10-15 14:32:33 UTC (rev 60776)
@@ -219,14 +219,6 @@
 #  define R_IMF_ENUM_TIFF
 #endif
 
-#ifdef WITH_OPENIMAGEIO
-#  define R_IMF_ENUM_PSD     {R_IMF_IMTYPE_PSD, "PSD", ICON_FILE_IMAGE, "Photosp PSD", \
-                                                "Output image in Photoshop PSD format"},
-#else
-#  define R_IMF_ENUM_PSD
-#endif
-
-
 #define IMAGE_TYPE_ITEMS_IMAGE_ONLY                                           \
 	R_IMF_ENUM_BMP                                                            \
 	/* DDS save not supported yet R_IMF_ENUM_DDS */                           \
@@ -243,7 +235,6 @@
 	R_IMF_ENUM_EXR                                                            \
 	R_IMF_ENUM_HDR                                                            \
 	R_IMF_ENUM_TIFF                                                           \
-	R_IMF_ENUM_PSD                                                            \
 
 
 EnumPropertyItem image_only_type_items[] = {




More information about the Bf-blender-cvs mailing list